org.chocosolver.solver.constraints.extension.nary.TuplesVeryLargeTable 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.extension.nary;
import gnu.trove.map.hash.TIntObjectHashMap;
import org.chocosolver.solver.constraints.extension.Tuples;
import org.chocosolver.solver.variables.IntVar;
/**
* A LargeRelation for cases where domain are too big to be stored in a single array. Then, we store
* it in a chunk bitsets
*
* @author Charles Prud'homme
* @since 08/06/11
*/
public class TuplesVeryLargeTable extends LargeRelation {
/**
* the number of dimensions of the considered tuples
*/
private final int n;
private final boolean feasible;
private final TIntObjectHashMap supports;
public TuplesVeryLargeTable(Tuples tuples, IntVar[] vars) {
n = vars.length;
feasible = tuples.isFeasible();
supports = new TIntObjectHashMap<>();
int nt = tuples.nbTuples();
for (int i = 0; i < nt; i++) {
int[] tuple = tuples.get(i);
if (valid(tuple, vars)) {
setTuple(tuple);
}
}
}
@SuppressWarnings("unchecked")
public boolean checkTuple(int[] tuple) {
TIntObjectHashMap current = supports;
int i = 0;
while (i < n - 1) {
current = current.get(tuple[i++]);
if (current == null) {
return false;
}
}
current = current.get(tuple[i]);
return current != null;
}
public boolean isConsistent(int[] tuple) {
return checkTuple(tuple) == feasible;
}
@SuppressWarnings("unchecked")
private void setTuple(int[] tuple) {
TIntObjectHashMap current = supports;
for (int i = 0; i < tuple.length; i++) {
TIntObjectHashMap _current = current.get(tuple[i]);
if (_current == null) {
_current = new TIntObjectHashMap<>();
current.put(tuple[i], _current);
}
current = _current;
}
}
@Override
public Tuples convert() {
Tuples tuples = new Tuples(feasible);
int[] tt = new int[n];
tuple(supports, tt, 0, tuples);
return tuples;
}
@SuppressWarnings("unchecked")
private void tuple(TIntObjectHashMap current, int[] tt, int p, Tuples tuples) {
if (current.isEmpty()) {
tuples.add(tt);
} else {
for (int k : current.keys()) {
tt[p] = k;
tuple(current.get(k), tt, p + 1, tuples);
}
}
}
}