Is there any similar library in C# for Choco (Contraint Programming
Asked
Active
Viewed 534 times
3 Answers
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
-
The only VB.NET library is no longer in development since 2004 – Wassim AZIRAR Sep 20 '11 at 13:50