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

org.chocosolver.solver.constraints.binary.element.PropElement Maven / Gradle / Ivy

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

import org.chocosolver.solver.constraints.Propagator;
import org.chocosolver.solver.constraints.PropagatorPriority;
import org.chocosolver.solver.exception.ContradictionException;
import org.chocosolver.solver.variables.IntVar;
import org.chocosolver.util.ESat;
import org.chocosolver.util.objects.setDataStructures.iterable.IntIterableBitSet;
import org.chocosolver.util.tools.ArrayUtils;

/**
 * VALUE = TABLE[INDEX-OFFSET], ensuring arc consistency on result and index.
 * 
* * @author Hadrien Cambazard * @author Fabien Hermenier * @author Charles Prud'homme * @author Jean-Guillaume Fages * @since 02/02/12 */ //2015OCT - cprudhom : simplify the code, without changing the consistency, no Sort anymore //2016AUG - jg : move filtering from bound/range to AC (add member reasoning) public class PropElement extends Propagator { /** * Table of values */ private final int[] values; /** * To match indices in {@link #values} and {@link #index} */ private final int offset; /** * Index variable */ private final IntVar index; /** * Resulting variable */ private final IntVar result; /** * Set of forbidden indices and possible values */ private final IntIterableBitSet fidx, pVals; /** * Create a propagator which ensures that VALUE = TABLE[INDEX-OFFSET] holds. * @param value integer variable * @param values array of ints * @param index integer variable * @param offset int */ public PropElement(IntVar value, int[] values, IntVar index, int offset) { super(ArrayUtils.toArray(value, index), PropagatorPriority.BINARY, false); this.values = values; this.offset = offset; this.index = index; this.result = value; fidx = new IntIterableBitSet(); fidx.setOffset(index.getLB()); pVals = new IntIterableBitSet(); pVals.setOffset(result.getLB()); } @Override public void propagate(int evtmask) throws ContradictionException { index.updateBounds(offset, values.length - 1 + offset, this); fidx.clear(); pVals.clear(); int iub = index.getUB(); for (int i = index.getLB(); i <= iub; i = index.nextValue(i)) { int value = values[i - offset]; if (result.contains(value)){ pVals.add(value); }else{ fidx.add(i); } } result.removeAllValuesBut(pVals,this); if (!fidx.isEmpty()) { index.removeValues(fidx, this); } if (result.isInstantiated() && index.hasEnumeratedDomain() && !index.isInstantiated()) { setPassive(); } } @Override public ESat isEntailed() { if (index.getUB() < offset || index.getLB() >= offset + values.length) { return ESat.FALSE; } if (isCompletelyInstantiated()) { return ESat.eval(result.contains(values[index.getValue() - offset])); } else if(result.isInstantiated()){ int val = result.getValue(); boolean foundVal = false; boolean foundOther = false; for(int i:index){ if(i>=offset && i=offset && i 5) sb.append("..., "); sb.append(this.values[values.length - 1]); sb.append("> [").append(this.index).append("])"); return sb.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy