Variable Operators
From Fabrica Bolos GLPK
The Variable type exposes the following members.
Operators
| Name | Description | |
|---|---|---|
| Addition(Double, Variable) |
Implements the operator +.
| |
| Addition(Variable, Variable) |
Implements the operator +.
| |
| Addition(Variable, Double) |
Implements the operator +.
| |
| Equality(Variable, Term) |
Implements the operator ==.
| |
| Equality(Variable, Variable) |
Implements the operator ==.
| |
| Equality(Variable, Double) |
Implements the operator ==.
| |
| GreaterThanOrEqual(Variable, Term) |
Implements the operator >=.
| |
| GreaterThanOrEqual(Variable, Double) |
Implements the operator >=.
| |
| Inequality(Variable, Term) |
Please use <= and >= to model !=
| |
| Inequality(Variable, Variable) |
Implements the operator !=.
| |
| Inequality(Variable, Double) |
Please use <= and >= to model !=
| |
| LessThanOrEqual(Variable, Term) |
Implements the operator <=.
| |
| LessThanOrEqual(Variable, Double) |
Implements the operator <=.
| |
| Multiply(Double, Variable) |
Implements the operator *.
| |
| Multiply(Variable, Variable) |
Implements the operator *.
| |
| Multiply(Variable, Double) |
Implements the operator *.
| |
| Subtraction(Double, Variable) |
Implements the operator -.
| |
| Subtraction(Variable, Variable) |
Implements the operator -.
| |
| Subtraction(Variable, Double) |
Implements the operator -.
| |
| UnaryNegation |
Implements the operator -.
|