21 lines
601 B
C#
21 lines
601 B
C#
// -----------------------------------------------------------------------------
|
|
// Program.cs
|
|
// Sprint: SPRINT_20251226_014_BINIDX
|
|
// Task: SCANINT-20 - Performance benchmarks for binary lookup
|
|
// -----------------------------------------------------------------------------
|
|
|
|
using BenchmarkDotNet.Running;
|
|
|
|
namespace StellaOps.Bench.BinaryLookup;
|
|
|
|
/// <summary>
|
|
/// Entry point for binary lookup benchmark suite.
|
|
/// </summary>
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var summary = BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
|
|
}
|
|
}
|