Delivers prescriptive analytics capabilities and decision intelligence to improve decision-making.
Originally posted by: memo85
Hi. I want to solve a problem that required files have been attached to the post. But, OPL gives "Operator not available for booelan" error. How can I resolve this error? Thank you in advance.
Regards.
Hi,
in
forall (i in stations, r in resource) { sum (t in tasks) (x[t]==i)*Capacities[t][r] <= attributeBounds;
Capacities is a set so I would rather write something like
forall (i in stations, r in resource) { sum (t in tasks,c in Capacities[t][r]) (x[t]==i)*c <= attributeBounds;
regards
Dear Alex, Thank you very much. I could not understand I how I made this mistake.