io.gitlab.chaver.mining.patterns.constraints.AdequateClosureDC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-mining Show documentation
Show all versions of data-mining Show documentation
Data mining with Choco solver
/*
* This file is part of io.gitlab.chaver:data-mining (https://gitlab.com/chaver/data-mining)
*
* Copyright (c) 2022, IMT Atlantique
*
* Licensed under the MIT license.
*
* See LICENSE file in the project root for full license information.
*/
package io.gitlab.chaver.mining.patterns.constraints;
import io.gitlab.chaver.mining.patterns.io.Database;
import io.gitlab.chaver.mining.patterns.measure.Measure;
import org.chocosolver.solver.exception.ContradictionException;
import org.chocosolver.solver.variables.BoolVar;
import java.util.List;
public class AdequateClosureDC extends AdequateClosure {
public AdequateClosureDC(Database database, List measures, BoolVar[] items) {
super(database, measures, items);
}
@Override
public void checkDC() throws ContradictionException {
rule3();
}
}