0

Is there any similar library in C# for Choco (Contraint Programming

Dan
  • 7,286
  • 6
  • 49
  • 114
Wassim AZIRAR
  • 10,823
  • 38
  • 121
  • 174

3 Answers3

2

I'm not familiar with the technology in question, but there is the Microsoft Solver Foundation which appears to do Constraint Programming

http://msdn.microsoft.com/en-us/devlabs/hh145003.aspx

http://msdn.microsoft.com/en-us/library/ff826354(v=vs.93).aspx

samjudson
  • 56,243
  • 7
  • 59
  • 69
0

If you are looking for open source alternatives in C#, you should definitely try Google or-tools.

cemal
  • 539
  • 6
  • 12
0

This site doesn't list any http://www.constraintsolving.com/solvers, so there may be no good ones.

You can use a C or C++ one by linking it into a C++/CLI managed/unmanaged assembly and wrapping it in C++/CLI managed classes. Then you'd be able to call from C#.

Lou Franco
  • 87,846
  • 14
  • 132
  • 192