项目作者: lifebeyondfife

项目描述 :
An Open Source .Net Constraint Programming Solver
高级语言: C#
项目地址: git://github.com/lifebeyondfife/Decider.git
创建时间: 2013-06-14T11:34:54Z
项目社区:https://github.com/lifebeyondfife/Decider

开源协议:MIT License

下载


Decider

main ci pipeline
nuget package
nuget package

An Open Source .Net Constraint Programming Solver

Installation

Install using nuget for .Net Core 8.0 (.Net Standard 2.0 and 2.1 also supported)

  1. dotnet add package Decider

Variables

Create constrained integer variables

  1. var s = new VariableInteger("s", 0, 9);
  2. var e = new VariableInteger("e", 0, 9);
  3. var n = new VariableInteger("n", 0, 9);
  4. var d = new VariableInteger("d", 0, 9);
  5. var m = new VariableInteger("m", 1, 9);
  6. var o = new VariableInteger("o", 0, 9);
  7. var r = new VariableInteger("r", 0, 9);
  8. var y = new VariableInteger("y", 0, 9);
  9. var c0 = new VariableInteger("c0", 0, 1);
  10. var c1 = new VariableInteger("c1", 0, 1);
  11. var c2 = new VariableInteger("c2", 0, 1);
  12. var c3 = new VariableInteger("c3", 0, 1);

Constraints

Define the constraints of your problem

  1. var constraints = new List<IConstraint>
  2. {
  3. new AllDifferentInteger(new [] { s, e, n, d, m, o, r, y }),
  4. new ConstraintInteger(d + e == (10 * c0) + y),
  5. new ConstraintInteger(n + r + c0 == (10 * c1) + e),
  6. new ConstraintInteger(e + o + c1 == (10 * c2) + n),
  7. new ConstraintInteger(s + m + c2 == (10 * c3) + o),
  8. new ConstraintInteger(c3 == m)
  9. };

Find a solution using Decider’s search routines

  1. var variables = new [] { c0, c1, c2, c3, s, e, n, d, m, o, r, y };
  2. var state = new StateInteger(variables, constraints);
  3. var searchResult = state.Search();
  4. Console.WriteLine($" {s} {e} {n} {d} ");
  5. Console.WriteLine($" + {m} {o} {r} {e} ");
  6. Console.WriteLine(" ---------");
  7. Console.WriteLine($" {m} {o} {n} {e} {y} ");
  8. Console.WriteLine($"Runtime:\t{state.Runtime}\nBacktracks:\t{state.Backtracks}\n");

Which results in

  1. 9 5 6 7
  2. + 1 0 8 5
  3. ---------
  4. 1 0 6 5 2
  5. Runtime: 00:00:00.0290211
  6. Backtracks: 85

Find All Solutions

Display all solutions to the n-queens problem

  1. var searchResult = state.SearchAllSolutions();
  2. foreach (var solution in state.Solutions)
  3. {
  4. for (var i = 0; i < variables.Length; ++i)
  5. {
  6. for (var j = 0; j < variables.Length; ++j)
  7. Console.Write(solution[i.ToString()].InstantiatedValue == j ? "Q " : ". ");
  8. Console.WriteLine();
  9. }
  10. Console.WriteLine();
  11. }

Which results in

  1. Q . . . . . . .
  2. . . . . Q . . .
  3. . . . . . . . Q
  4. . . . . . Q . .
  5. . . Q . . . . .
  6. . . . . . . Q .
  7. . Q . . . . . .
  8. . . . Q . . . .
  9. Q . . . . . . .
  10. . . . . . Q . .
  11. . . . . . . . Q
  12. . . Q . . . . .
  13. . . . . . . Q .
  14. . . . Q . . . .
  15. . Q . . . . . .
  16. . . . . Q . . .

and a further ninety solutions.

Optimise

Create an integer variable to optimise i.e. make as large as possible

  1. var optimise = new VariableInteger("optimalAnswer");
  2. new ConstraintInteger(optimise == a + b + c + d + e + f + g + h)

Specify an upper time bound on how long you search, say, five minutes

  1. var timeout = 60 * 5;
  2. var searchResult = state.Search(optimise, timeout);
  3. Console.WriteLine($"Optimal answer found is ${state.OptimalSolution["optimalAnswer"]}");

Constrained Arrays

Index integer arrays with constrained integer variables

  1. var a = new VariableInteger("a", 0, 9);
  2. var array = new ConstrainedArray(new int[] { 0, 23, 52, 62, 75, 73, 47, 20, 87, 27 });
  3. var constraint = new ConstraintInteger(array[a] < 40)

F#

Thanks to contributor @toburger, there’s a simple example of using Decider in F#.

  1. let constraints: IConstraint list = [
  2. ConstraintInteger(kickboards + cityrollers == expr rollers)
  3. ConstraintInteger(kickboards * expr 3 + cityrollers * expr 2 == expr rolls)
  4. ]

See Examples/FSharp for full details.

More Examples?

Fork the repo to see more examples, some toy and some real world, of Decider in action.

Licence

Released under the MIT licence, Decider is freely available for commercial use.

Author

I have a PhD in Constraint Programming and love turning NP-complete problems into CSPs. Visit my blog at http://lifebeyondfife.com/.