Closed lovasoa closed 3 years ago
This new macro allows more readable constraint specifications.
problem += (500*a + 1200*b + 1500*c).le(10000);
problem += constraint!(500*a + 1200*b + 1500*c <= 10000);
Hi @lovasoa, so good. Is it still possible to use the first version ?
Yes, I didn't remove anything. This is a backwards-compatible change
Thanks for merging !
This new macro allows more readable constraint specifications.
before
after