This commit is contained in:
Asriel Camora
2025-04-29 14:34:23 -07:00
parent 9d8e29f069
commit 419476718a
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Raphael.Net" Version="2.1.0" />
<PackageReference Include="Raphael.Net" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
+2 -2
View File
@@ -213,7 +213,7 @@ public sealed class Solver : IDisposable
BackloadProgress = true,
UnsoundBranchPruning = true,
LogLevel = Raphael.LevelFilter.Debug,
ThreadCount = Config.MaxThreadCount,
ThreadCount = (ushort)Config.MaxThreadCount,
};
using var solver = new Raphael.Solver(in config, in input, pool);
@@ -239,7 +239,7 @@ public sealed class Solver : IDisposable
BackloadProgress = Config.BackloadProgress,
UnsoundBranchPruning = false,
LogLevel = Raphael.LevelFilter.Debug,
ThreadCount = Config.MaxThreadCount,
ThreadCount = (ushort)Config.MaxThreadCount,
};
using var solver = new Raphael.Solver(in config, in input, pool);