Fix cast
This commit is contained in:
@@ -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
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user