I am looking for a way to encode mathematical equations on Choco Solver. I see there's a way to encode constraints like:
x + y < 9
But I am trying to encode something like
3x + 4y < 9
where x and y are int vars.
Any help would be greatly appreciated.
I am also new to Choco but I can solve this one.
To do that you can use the constraint
scalar
(see docs).First you just need to define the
x
and they
in twoIntVar
variables. You can useVariableFactory.bounded
orVariable.enumerated
. They are pretty similar when you just want to use a domain with a lower bound and an upper bound, but the difference is explained in the user guide.Then you need to define an array with the coefficients of the equation, in this case
{ 3, 4 }
.Here is how you do it: