Closed cprudhom closed 5 months ago
Recording no-goods from restarts is based on Decision, from now on, IntDecision and SetDecision are managed.
IntDecision
SetDecision
When using ObjectiveStrategy, like
ObjectiveStrategy
solver.setSearch(Search.objectiveStrategy(obj, BOTTOM_UP), minDomLBSearch(xs));
recording no goods (from restarts or from solutions) throws an UnsupportedOperationException.
UnsupportedOperationException
This is due to ObjectiveStrategy that redefines DecisionOperator instead of using IntSplitDecision or IntReverseSplitDecision.
DecisionOperator
IntSplitDecision
IntReverseSplitDecision
Recording no-goods from restarts is based on Decision, from now on,
IntDecision
andSetDecision
are managed.When using
ObjectiveStrategy
, likerecording no goods (from restarts or from solutions) throws an
UnsupportedOperationException
.This is due to
ObjectiveStrategy
that redefinesDecisionOperator
instead of usingIntSplitDecision
orIntReverseSplitDecision
.