org.chocosolver.solver.constraints.unary.PropLessOrEqualXC 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.
The newest version!
/*
* This file is part of choco-solver, http://choco-solver.org/
*
* Copyright (c) 2024, 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.unary;
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.variables.IntVar;
import org.chocosolver.solver.variables.events.IntEventType;
import org.chocosolver.util.ESat;
import org.chocosolver.util.objects.setDataStructures.iterable.IntIterableRangeSet;
/**
* X <= C
*
*
* @author Charles Prud'homme
* @since 16/06/11
*/
public class PropLessOrEqualXC extends Propagator {
private final int constant;
public PropLessOrEqualXC(IntVar var, int cste) {
super(new IntVar[]{var}, PropagatorPriority.UNARY, false, true);
this.constant = cste;
}
@Override
public int getPropagationConditions(int vIdx) {
return IntEventType.boundAndInst();
}
@Override
public void propagate(int evtmask) throws ContradictionException {
// with views such as abs(...), the prop can be not entailed after initial propagation
if (vars[0].updateUpperBound(constant, this) || vars[0].getUB() <= constant) {
this.setPassive();
}
}
@Override
public ESat isEntailed() {
if (vars[0].getUB() <= constant) {
return ESat.TRUE;
}
if (vars[0].getLB() > constant) {
return ESat.FALSE;
}
return ESat.UNDEFINED;
}
/**
* @implSpec
*
* Consider that v1 has been modified by propagation of this.
* Before the propagation, the domains were like:
*
* (v1 ∈ D1)
*
* Then this propagates v1 ≤ c, then:
*
* (v1 ∈ D1) → v1 ≤ c
*
* Converting to DNF:
*
* (v1 ∈ (U \ D1) ∪ (-∞, c])
*
*
*/
@Override
public void explain(int p, ExplanationForSignedClause explanation) {
vars[0].intersectLit(IntIterableRangeSet.MIN, constant, explanation);
}
@Override
public String toString() {
return vars[0].getName() + " <= " + constant;
}
}