javax.constraints.impl.VarBool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsr331-sugar Show documentation
Show all versions of jsr331-sugar Show documentation
This is a JSR331 interface for the open source Java constraint programming library "Sugar" v. 2.1.3
The newest version!
package javax.constraints.impl;
/**
* An implementation of the interface "VarBool"
*/
public class VarBool extends Var implements javax.constraints.VarBool {
public VarBool(javax.constraints.Problem problem, String name) {
super(problem, name, 0, 1);
}
public VarBool(javax.constraints.Problem problem) {
this(problem, "");
}
}