public abstract class Operation
extends java.lang.Object
Constructor and Description |
---|
Operation() |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
isTrue(Constraint cons,
double value)
Checks if the combination of the constraint, the operation and the value
is true or not.
|
abstract java.util.List<Constraint> |
makeConstraint(parsebionet.biodata.BioEntity entity,
double value)
Make constraint from an entity and a value.
|
abstract java.lang.String |
toString() |
public abstract java.lang.String toString()
toString
in class java.lang.Object
public abstract java.util.List<Constraint> makeConstraint(parsebionet.biodata.BioEntity entity, double value)
Only used when interactions are not in the solver.
entity
- The entity concerned.value
- The value to use.public abstract boolean isTrue(Constraint cons, double value)
Only used when interactions are not in the solver.
cons
- The constraint to check.value
- The value to check.