LSBBOperator Enumeration¶
-
enum
localsolver.
LSBBOperator
¶ Mathematical operators available for modeling. These operators are used to type the expressions created in LocalSolverBlackBox mathematical optimization model.
See: LSBBModel See: LSBBExpression -
Bool
¶ Boolean decision. Decisional operator with no operand. Decision variable with domain
{0,1}
.
-
Int
¶ Integer decision variable. Decisional operator with two operands min and max. Decision variable with domain
[min,max]
.
-
Float
¶ Float decision. Decisional operator with two operands min and max. Decision variable with domain
[min,max]
.
-
Const
¶ Constant. Unary operator. Can be equal to any integer.
-
NativeFunction
¶ Native function.
Native functions are used to retrieve the value of expressions from external functions written with your favorite language. Native functions are created with the dedicated method
LSBBModel.CreateNativeFunction
.
-
Call
¶ Call a particular function.
The first operand must be a function (like
NativeFunction
). The other operands are passed to the function as arguments.
-