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

javax.constraints.impl.VarBool Maven / Gradle / Ivy

Go to download

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, "");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy