Package | Description |
---|---|
org.processmining.lpengines.factories | |
org.processmining.lpengines.implementations | |
org.processmining.lpengines.interfaces |
Modifier and Type | Method and Description |
---|---|
static LPConstraint |
LPConstraintFactory.createLPConstraint(double[] coefficients,
LPEngine.Operator operator,
double rhs) |
static LPConstraint |
LPConstraintFactory.createLPConstraintRhsZero(double[] coefficients,
LPEngine.Operator operator) |
Modifier and Type | Field and Description |
---|---|
protected LPEngine.Operator |
LPConstraintImpl.operator |
Modifier and Type | Method and Description |
---|---|
LPEngine.Operator |
LPConstraintImpl.getOperator() |
Modifier and Type | Method and Description |
---|---|
int |
LPEngineLpSolveImpl.addConstraint(double[] constraint,
LPEngine.Operator operator,
double value) |
int |
LPEngineLpSolveImpl.addConstraint(java.util.Map<java.lang.Integer,java.lang.Double> constraint,
LPEngine.Operator operator,
double value) |
boolean |
LPEngineLpSolveImpl.setConstraint(int row,
double[] constraint,
LPEngine.Operator op,
double rhs) |
boolean |
LPEngineLpSolveImpl.setConstraintOperator(int row,
LPEngine.Operator op) |
void |
LPConstraintImpl.setOperator(LPEngine.Operator operator) |
Constructor and Description |
---|
LPConstraintImpl(double[] coefficients,
LPEngine.Operator operator) |
LPConstraintImpl(double[] coefficients,
LPEngine.Operator operator,
double rhs) |
Modifier and Type | Method and Description |
---|---|
LPEngine.Operator |
LPConstraint.getOperator() |
static LPEngine.Operator |
LPEngine.Operator.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LPEngine.Operator[] |
LPEngine.Operator.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
int |
LPEngine.addConstraint(double[] constraint,
LPEngine.Operator operator,
double value)
Add a constraints to the LP Engine
|
int |
LPEngine.addConstraint(java.util.Map<java.lang.Integer,java.lang.Double> constraint,
LPEngine.Operator operator,
double value)
Add a constraints to the LP Engine
|
boolean |
LPEngine.setConstraint(int row,
double[] constraint,
LPEngine.Operator op,
double rhs)
Set the given row with the provided constraint, operator and rhs
|
boolean |
LPEngine.setConstraintOperator(int row,
LPEngine.Operator op)
Set the given constraint's operator (e.g.
|
void |
LPConstraint.setOperator(LPEngine.Operator operator) |