org.openl.ie.constrainer.ChoicePointLabel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.openl.rules.constrainer Show documentation
Show all versions of org.openl.rules.constrainer Show documentation
OpenL Constraint Programming engine
package org.openl.ie.constrainer;
/**
*
* Title:
*
*
* Description:
*
*
* Copyright: Copyright (c) 2002
*
*
* Company:
*
*
* @author unascribed
* @version 1.0
*/
public class ChoicePointLabel implements java.io.Serializable {
private final int _label;
private final Constrainer _c;
ChoicePointLabel(Constrainer c, int label) {
_c = c;
_label = label;
}
public boolean equals(ChoicePointLabel cpl) {
return _label == cpl._label && _c == cpl._c;
}
@Override
public int hashCode() {
return _label;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy