All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.chocosolver.solver.constraints.reification.PropImplied Maven / Gradle / Ivy

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.reification;

import org.chocosolver.solver.constraints.Constraint;
import org.chocosolver.solver.constraints.ImpliedConstraint;
import org.chocosolver.solver.constraints.Propagator;
import org.chocosolver.solver.constraints.PropagatorPriority;
import org.chocosolver.solver.exception.ContradictionException;
import org.chocosolver.solver.variables.BoolVar;
import org.chocosolver.solver.variables.Variable;
import org.chocosolver.util.ESat;

/**
 * Implication propagator
 * 

*
* * @author Jean-Guillaume Fages * @since 02/2013 */ public class PropImplied extends Propagator { //*********************************************************************************** // VARIABLES //*********************************************************************************** // boolean variable of the reification private final BoolVar bVar; // constraint to apply if bVar = true private final Constraint trueCons; // constraint in charge of the reification process (constraint of this propagator) private ImpliedConstraint reifCons; //*********************************************************************************** // CONSTRUCTION //*********************************************************************************** public PropImplied(Variable[] allVars, Constraint consIfBoolTrue) { super(allVars, computePrority(consIfBoolTrue), false); this.bVar = (BoolVar) vars[0]; this.trueCons = consIfBoolTrue; } public void setReifCons(ImpliedConstraint reifCons) { assert this.reifCons == null : "cannot change the ReificationConstraint of a PropReif"; this.reifCons = reifCons; } private static PropagatorPriority computePrority(Constraint consIfBoolTrue) { int p = consIfBoolTrue.computeMaxPriority().priority; return PropagatorPriority.get(Math.max(p, PropagatorPriority.TERNARY.priority)); } //*********************************************************************************** // METHODS //*********************************************************************************** @Override public void propagate(int evtmask) throws ContradictionException { if (bVar.isInstantiated()) { setPassive(); if (bVar.getBooleanValue() == ESat.TRUE) { reifCons.activate(0); } } else { ESat sat = trueCons.isSatisfied(); if (sat == ESat.FALSE) { bVar.setToFalse(this); setPassive(); } } } @Override public ESat isEntailed() { if (bVar.isInstantiated()) { if (bVar.getValue() == 1) { return trueCons.isSatisfied(); } else { return ESat.TRUE; } } return ESat.UNDEFINED; } @Override public String toString() { return bVar.toString() + "=>" + trueCons.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy