Skip to content
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="NoOverlapSampleSat.cs" /> <Compile Include="NoOverlapSampleSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="NursesSat.cs" /> <Compile Include="NursesSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="OptionalIntervalSampleSat.cs" /> <Compile Include="OptionalIntervalSampleSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="RabbitsAndPheasantsSat.cs" /> <Compile Include="RabbitsAndPheasantsSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="RankingSampleSat.cs" /> <Compile Include="RankingSampleSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="ReifiedSampleSat.cs" /> <Compile Include="ReifiedSampleSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SearchForAllSolutionsSampleSat.cs" /> <Compile Include="SearchForAllSolutionsSampleSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="ShiftSchedulingSat.cs" /> <Compile Include="ShiftSchedulingSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SimpleCpProgram.cs" /> <Compile Include="SimpleCpProgram.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -22,7 +22,7 @@ public class SimpleLpProgram ...@@ -22,7 +22,7 @@ public class SimpleLpProgram
{ {
// [START solver] // [START solver]
// Create the linear solver with the GLOP backend. // Create the linear solver with the GLOP backend.
Solver solver = Solver.CreateSolver("SimpleLpProgram", "GLOP_LINEAR_PROGRAMMING"); Solver solver = Solver.CreateSolver("SimpleLpProgram", "GLOP");
// [END solver] // [END solver]
// [START variables] // [START variables]
......
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SimpleLpProgram.cs" /> <Compile Include="SimpleLpProgram.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SimpleMaxFlowProgram.cs" /> <Compile Include="SimpleMaxFlowProgram.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SimpleMinCostFlowProgram.cs" /> <Compile Include="SimpleMinCostFlowProgram.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -23,7 +23,7 @@ public class SimpleMipProgram ...@@ -23,7 +23,7 @@ public class SimpleMipProgram
{ {
// [START solver] // [START solver]
// Create the linear solver with the CBC backend. // Create the linear solver with the CBC backend.
Solver solver = Solver.CreateSolver("SimpleMipProgram", "CBC_MIXED_INTEGER_PROGRAMMING"); Solver solver = Solver.CreateSolver("SimpleMipProgram", "CBC");
// [END solver] // [END solver]
// [START variables] // [START variables]
......
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SimpleMipProgram.cs" /> <Compile Include="SimpleMipProgram.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SimpleProgramFSharp.fs" /> <Compile Include="SimpleProgramFSharp.fs" />
<PackageReference Include="Google.OrTools.FSharp" Version="7.7.*" /> <PackageReference Include="Google.OrTools.FSharp" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SimpleRoutingProgram.cs" /> <Compile Include="SimpleRoutingProgram.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SimpleSatProgram.cs" /> <Compile Include="SimpleSatProgram.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SolutionHintingSampleSat.cs" /> <Compile Include="SolutionHintingSampleSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>
...@@ -19,6 +19,6 @@ ...@@ -19,6 +19,6 @@
<ItemGroup> <ItemGroup>
<Compile Include="SolveAndPrintIntermediateSolutionsSampleSat.cs" /> <Compile Include="SolveAndPrintIntermediateSolutionsSampleSat.cs" />
<PackageReference Include="Google.OrTools" Version="7.7.*" /> <PackageReference Include="Google.OrTools" Version="7.8.*" />
</ItemGroup> </ItemGroup>
</Project> </Project>