Type Alias: ProblemDefinition
ProblemDefinition: {
model
:Model
;parameters
:Parameters
;warmStart
:Solution
; }
The definition of a problem to solve, i.e., all the input the solver needs for solving.
Type declaration
model
model:
Model
The model to solve.
parameters?
optional
parameters:Parameters
The parameters to use for solving.
warmStart?
optional
warmStart:Solution
The solution to start with.
Remarks
This type contains everything that is needed to solve a model. In particular it contains the model itself, the parameters to use for solving (optional) and the starting solution (optional).