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

javax.constraints.impl.constraint.Or 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.constraint;

import javax.constraints.impl.Problem;
import javax.constraints.impl.Constraint;

import jp.kobe_u.sugar.expression.Expression;

/**
 * An implementation of the Constraint "Or"
 */
public class Or extends Constraint {
    public Or(javax.constraints.Constraint c1, javax.constraints.Constraint c2) {
        super(c1.getProblem(), "or"); 
        Problem p = (Problem)getProblem();
        sugarOr(p.toExpr(c1), p.toExpr(c2));
    }

    private void sugarOr(Expression c1, Expression c2) {
        Expression c = Expression.create(new Expression[] {
                Expression.OR,
                c1,
                c2
        });
        _setImpl(c);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy