dotnet: Fix tests when SCIP and COINOR are disabled (#3261)

This commit is contained in:
Corentin Le Molgat
2022-06-03 18:03:31 +02:00
parent 17eeab948a
commit 08ab9c39ec
16 changed files with 92 additions and 4 deletions

View File

@@ -39,6 +39,10 @@ public class BinPackingMip
// [START solver]
// Create the linear solver with the SCIP backend.
Solver solver = Solver.CreateSolver("SCIP");
if (solver is null)
{
return;
}
// [END solver]
// [START program_part2]