added proper benchmarking against others

changed StandardStrategy tonuse binary search.

and ao on
This commit is contained in:
Linus Björnstam 2026-04-22 19:30:46 +02:00
parent 9242c1c751
commit c7c5c7b81b
9 changed files with 648 additions and 627 deletions

View file

@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="LanguageExt.Core" Version="4.4.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\PersistentMap\PersistentMap.csproj" />
</ItemGroup>
</Project>