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

org.chocosolver.solver.constraints.nary.alldifferent.PropAllDiffBC Maven / Gradle / Ivy

There is a newer version: 4.10.16
Show newest version
/**
 * This file is part of choco-solver, http://choco-solver.org/
 *
 * Copyright (c) 2018, 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.nary.alldifferent;

import org.chocosolver.solver.constraints.Propagator;
import org.chocosolver.solver.constraints.PropagatorPriority;
import org.chocosolver.solver.constraints.nary.alldifferent.algo.AlgoAllDiffBC;
import org.chocosolver.solver.exception.ContradictionException;
import org.chocosolver.solver.variables.IntVar;
import org.chocosolver.solver.variables.events.IntEventType;
import org.chocosolver.util.ESat;

/**
 * Based on: 
* "A Fast and Simple Algorithm for Bounds Consistency of the AllDifferent Constraint"
* A. Lopez-Ortiz, CG. Quimper, J. Tromp, P.van Beek *
* * @author Hadrien Cambazard, Charles Prud'homme, Jean-Guillaume fages * @since 07/02/11 *

*/ public class PropAllDiffBC extends Propagator { private AlgoAllDiffBC filter; public PropAllDiffBC(IntVar[] variables) { super(variables, PropagatorPriority.LINEAR, false); filter = new AlgoAllDiffBC(this); filter.reset(vars); } @Override public int getPropagationConditions(int vIdx) { return IntEventType.boundAndInst(); } @Override public void propagate(int evtmask) throws ContradictionException { filter.filter(); } @Override public ESat isEntailed() { return ESat.TRUE; // redundant propagator (use PropAllDiffInst) } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy