Package | Description |
---|---|
org.processmining.lpengines.implementations | |
org.processmining.lpengines.interfaces |
Modifier and Type | Method and Description |
---|---|
int |
LPEngineLpSolveImpl.addVariable(double[] column,
LPEngine.VariableType type) |
int |
LPEngineLpSolveImpl.addVariable(java.util.Map<java.lang.Integer,java.lang.Double> nonZeroValues,
LPEngine.VariableType type) |
boolean |
LPEngineLpSolveImpl.setType(int column,
LPEngine.VariableType type) |
protected boolean |
LPEngineLpSolveImpl.valueMatchesType(double d,
LPEngine.VariableType type) |
protected boolean |
LPEngineLpSolveImpl.variableMatchesType(double[] values,
LPEngine.VariableType type) |
protected boolean |
LPEngineLpSolveImpl.variableMatchesType(java.util.Map<java.lang.Integer,java.lang.Double> nonZeroValues,
LPEngine.VariableType type) |
Modifier and Type | Method and Description |
---|---|
static LPEngine.VariableType |
LPEngine.VariableType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LPEngine.VariableType[] |
LPEngine.VariableType.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.addVariable(double[] column,
LPEngine.VariableType type)
Add a variable.
|
int |
LPEngine.addVariable(java.util.Map<java.lang.Integer,java.lang.Double> nonZeroValues,
LPEngine.VariableType type)
Add a variable.
|
boolean |
LPEngine.setType(int column,
LPEngine.VariableType type)
Set a variable's type to be of type int.
|