Files
ortools-clone/ortools/sat/samples/SearchForAllSolutionsSampleSat.cs

85 lines
2.4 KiB
C#
Raw Normal View History

// Copyright 2010-2021 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2018-11-15 15:20:50 -08:00
// [START program]
using System;
using Google.OrTools.Sat;
2018-11-15 15:20:50 -08:00
// [START print_solution]
2020-11-03 10:04:19 +01:00
public class VarArraySolutionPrinter : CpSolverSolutionCallback
{
public VarArraySolutionPrinter(IntVar[] variables)
{
variables_ = variables;
}
2020-11-03 10:04:19 +01:00
public override void OnSolutionCallback()
{
2020-11-03 10:04:19 +01:00
{
Console.WriteLine(String.Format("Solution #{0}: time = {1:F2} s", solution_count_, WallTime()));
foreach (IntVar v in variables_)
{
2022-01-10 18:22:27 +01:00
Console.WriteLine(String.Format(" {0} = {1}", v.ToString(), Value(v)));
2020-11-03 10:04:19 +01:00
}
solution_count_++;
}
}
2020-11-03 10:04:19 +01:00
public int SolutionCount()
{
return solution_count_;
}
2020-11-03 10:04:19 +01:00
private int solution_count_;
private IntVar[] variables_;
}
2018-11-15 15:20:50 -08:00
// [END print_solution]
2020-11-03 10:04:19 +01:00
public class SearchForAllSolutionsSampleSat
{
static void Main()
{
// Creates the model.
// [START model]
CpModel model = new CpModel();
// [END model]
2018-11-15 15:20:50 -08:00
2020-11-03 10:04:19 +01:00
// Creates the variables.
// [START variables]
int num_vals = 3;
2020-11-03 10:04:19 +01:00
IntVar x = model.NewIntVar(0, num_vals - 1, "x");
IntVar y = model.NewIntVar(0, num_vals - 1, "y");
IntVar z = model.NewIntVar(0, num_vals - 1, "z");
// [END variables]
2020-11-03 10:04:19 +01:00
// Adds a different constraint.
// [START constraints]
model.Add(x != y);
// [END constraints]
2020-11-03 10:04:19 +01:00
// Creates a solver and solves the model.
// [START solve]
CpSolver solver = new CpSolver();
VarArraySolutionPrinter cb = new VarArraySolutionPrinter(new IntVar[] { x, y, z });
// Search for all solutions.
solver.StringParameters = "enumerate_all_solutions:true";
// And solve.
solver.Solve(model, cb);
2020-11-03 10:04:19 +01:00
// [END solve]
2018-11-15 15:20:50 -08:00
2021-10-12 18:26:15 +02:00
Console.WriteLine($"Number of solutions found: {cb.SolutionCount()}");
2020-11-03 10:04:19 +01:00
}
}
2018-11-15 15:20:50 -08:00
// [END program]