org.chocosolver.solver.constraints.binary.PropGreaterOrEqualXY_C Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of choco-solver Show documentation
Show all versions of choco-solver Show documentation
Open-source constraint solver.
/*
* This file is part of choco-solver, http://choco-solver.org/
*
* Copyright (c) 2019, IMT Atlantique. All rights reserved.
*
* Licensed under the BSD 4-clause license.
*
* See LICENSE file in the project root for full license information.
*/
package org.chocosolver.solver.constraints.binary;
import org.chocosolver.solver.constraints.Propagator;
import org.chocosolver.solver.constraints.PropagatorPriority;
import org.chocosolver.solver.exception.ContradictionException;
import org.chocosolver.solver.learn.ExplanationForSignedClause;
import org.chocosolver.solver.learn.Implications;
import org.chocosolver.solver.variables.IntVar;
import org.chocosolver.solver.variables.events.IntEventType;
import org.chocosolver.util.ESat;
import org.chocosolver.util.objects.ValueSortedMap;
import org.chocosolver.util.objects.setDataStructures.iterable.IntIterableRangeSet;
import org.chocosolver.util.tools.MathUtils;
/**
* X + Y >= C
*
*
* @author Charles Prud'homme
* @since 13/06/12
*/
public final class PropGreaterOrEqualXY_C extends Propagator {
private final IntVar x;
private final IntVar y;
private final int cste;
@SuppressWarnings({"unchecked"})
public PropGreaterOrEqualXY_C(IntVar[] vars, int c) {
super(vars, PropagatorPriority.BINARY, true);
this.x = vars[0];
this.y = vars[1];
this.cste = c;
}
@Override
public int getPropagationConditions(int vIdx) {
return IntEventType.INSTANTIATE.getMask() + IntEventType.DECUPP.getMask();
}
@Override
public void propagate(int evtmask) throws ContradictionException {
x.updateLowerBound(MathUtils.safeSubstract(this.cste, y.getUB()), this);
y.updateLowerBound(MathUtils.safeSubstract(this.cste, x.getUB()), this);
if (x.getLB() + y.getLB() >= this.cste) {
this.setPassive();
}
}
@Override
public void propagate(int idxVarInProp, int mask) throws ContradictionException {
if (idxVarInProp == 0) {
y.updateLowerBound(this.cste - x.getUB(), this);
} else {
x.updateLowerBound(this.cste - y.getUB(), this);
}
if (x.getLB() + y.getLB() >= this.cste) {
this.setPassive();
}
}
@Override
public ESat isEntailed() {
if (x.getUB() + y.getUB() < cste)
return ESat.FALSE;
else if (x.getLB() + y.getLB() >= this.cste)
return ESat.TRUE;
else
return ESat.UNDEFINED;
}
/**
* @implSpec
* Premise: x + y ≥ c
* The filtering algorithm states that:
*
* - lb(x) ← c - ub(y) : x cannot be smaller than c minus the greatest value of y
* - lb(y) ← c - ub(x) : y cannot be smaller than c minus the greatest value of x
*
*
*
* Inference rules:
*
* -
* Let m = ub(y), then
*
( x ∈ [c - m..+∞) ∨ y ∈ [m + 1..+∞) )
*
* -
* Let n = ub(x), then
*
( x ∈ [n + 1..+∞) ∨ y ∈ [c - m..+∞) )
*
*
*
*/
@Override
public void explain(ExplanationForSignedClause explanation,
ValueSortedMap front,
Implications ig, int p) {
IntIterableRangeSet set0, set1;
int m;
boolean isPivot;
if (isPivot = (ig.getIntVarAt(p) == vars[0])) { // case a. (see javadoc)
m = explanation.getSet(vars[1]).max();
set0 = explanation.getRootSet(vars[0]);
set1 = explanation.getComplementSet(vars[1]);
set0.retainBetween(cste - m, IntIterableRangeSet.MAX);
set1.retainBetween(m + 1, IntIterableRangeSet.MAX);
} else { // case b. (see javadoc)
assert ig.getIntVarAt(p) == vars[1];
m = explanation.getSet(vars[0]).max();
set0 = explanation.getComplementSet(vars[0]);
set1 = explanation.getRootSet(vars[1]);
set0.retainBetween(m + 1, IntIterableRangeSet.MAX);
set1.retainBetween(cste - m, IntIterableRangeSet.MAX);
}
explanation.addLiteral(vars[0], set0, isPivot);
explanation.addLiteral(vars[1], set1, !isPivot);
}
@Override
public String toString() {
return x.getName() + " + " + y.getName() + " >= " + cste;
}
}