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> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="Raphael.Net" Version="2.1.0" /> <PackageReference Include="Raphael.Net" Version="2.1.1" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
+2 -2
View File
@@ -213,7 +213,7 @@ public sealed class Solver : IDisposable
BackloadProgress = true, BackloadProgress = true,
UnsoundBranchPruning = true, UnsoundBranchPruning = true,
LogLevel = Raphael.LevelFilter.Debug, LogLevel = Raphael.LevelFilter.Debug,
ThreadCount = Config.MaxThreadCount, ThreadCount = (ushort)Config.MaxThreadCount,
}; };
using var solver = new Raphael.Solver(in config, in input, pool); using var solver = new Raphael.Solver(in config, in input, pool);
@@ -239,7 +239,7 @@ public sealed class Solver : IDisposable
BackloadProgress = Config.BackloadProgress, BackloadProgress = Config.BackloadProgress,
UnsoundBranchPruning = false, UnsoundBranchPruning = false,
LogLevel = Raphael.LevelFilter.Debug, LogLevel = Raphael.LevelFilter.Debug,
ThreadCount = Config.MaxThreadCount, ThreadCount = (ushort)Config.MaxThreadCount,
}; };
using var solver = new Raphael.Solver(in config, in input, pool); using var solver = new Raphael.Solver(in config, in input, pool);