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
+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);