Type Alias: ProblemDefinition
ProblemDefinition = {
model:Model;parameters?:Parameters;warmStart?:Solution; }
Remarks
The definition of a problem to solve, i.e., all the input the solver needs for solving.
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).
Benchmarking
model
model:
Model
The model to solve.
parameters?
optionalparameters?:Parameters
The parameters to use for solving.
warmStart?
optionalwarmStart?:Solution
The solution to start with.