Uses of Enum
org.projog.clp.ExpressionResult
Packages that use ExpressionResult
Package
Description
A constraint logic programming library for finite domains.
Contains classes that perform arithmetic operators using instances of
Expression.-
Uses of ExpressionResult in org.projog.clp
Methods in org.projog.clp that return ExpressionResultModifier and TypeMethodDescriptionClpConstraintStore.setMax(Expression id, long max) default ExpressionResultConstraint.setMax(ConstraintStore constraintStore, long max) ConstraintStore.setMax(Expression id, long max) Expression.setMax(ConstraintStore constraintStore, long max) FixedValue.setMax(ConstraintStore s, long max) Variable.setMax(ConstraintStore s, long max) ClpConstraintStore.setMin(Expression id, long min) default ExpressionResultConstraint.setMin(ConstraintStore constraintStore, long min) ConstraintStore.setMin(Expression id, long min) Expression.setMin(ConstraintStore constraintStore, long min) FixedValue.setMin(ConstraintStore s, long min) Variable.setMin(ConstraintStore s, long min) ClpConstraintStore.setNot(Expression id, long not) ConstraintStore.setNot(Expression id, long not) default ExpressionResultExpression.setNot(ConstraintStore store, long not) FixedValue.setNot(ConstraintStore s, long not) Variable.setNot(ConstraintStore s, long not) ClpConstraintStore.setValue(Expression id, long value) ConstraintStore.setValue(Expression id, long value) Variable.setValue(ConstraintStore s, long value) private ExpressionResultClpConstraintStore.update(Expression e, VariableStateResult r) static ExpressionResultReturns the enum constant of this type with the specified name.static ExpressionResult[]ExpressionResult.values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ExpressionResult in org.projog.clp.math
Methods in org.projog.clp.math that return ExpressionResultModifier and TypeMethodDescriptionAbsolute.setMax(ConstraintStore s, long value) Add.setMax(ConstraintStore s, long max) Divide.setMax(ConstraintStore s, long max) Maximum.setMax(ConstraintStore constraintStore, long max) Minimum.setMax(ConstraintStore constraintStore, long max) Minus.setMax(ConstraintStore s, long value) Multiply.setMax(ConstraintStore s, long max) private static ExpressionResultMultiply.setMax(ConstraintStore s, Expression left, long max, long leftMax, long rightMin, long rightMax, BiFunction<Long, Long, Long> f) Subtract.setMax(ConstraintStore s, long max) Absolute.setMin(ConstraintStore s, long value) Add.setMin(ConstraintStore s, long min) Divide.setMin(ConstraintStore s, long min) Maximum.setMin(ConstraintStore constraintStore, long min) Minimum.setMin(ConstraintStore constraintStore, long min) Minus.setMin(ConstraintStore s, long value) Multiply.setMin(ConstraintStore s, long min) private static ExpressionResultMultiply.setMin(ConstraintStore s, Expression left, long min, long leftMin, long rightMin, long rightMax, BiFunction<Long, Long, Long> f) Subtract.setMin(ConstraintStore s, long min)