You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to support the following syntax in the parser:
% dominance: both are at least as good as current solution,
% at least one is strictly better
dominanceRelation
(total_cost <= fromSolution(total_cost)) /\
(total_carbon <= fromSolution(total_carbon)) /\
(
(total_cost < fromSolution(total_cost)) \/
(total_carbon < fromSolution(total_carbon))
)
(This is mostly "standard" Essence constraints with the special fromSolution() syntax for some variables)
The text was updated successfully, but these errors were encountered:
We need to support the following syntax in the parser:
(This is mostly "standard" Essence constraints with the special
fromSolution()
syntax for some variables)The text was updated successfully, but these errors were encountered: