Skip to main content

Type alias: ObjectiveHistoryItem

Ƭ ObjectiveHistoryItem: Object

An item in SolveResult.objectiveHistory array. There is one item for each solution found.

Type declaration

NameTypeDescription
objectiveObjectiveValueObjective value of the solution.
solveTimenumberDuration of the solve at the time the solution was found, in seconds.
valid?trueResult of the verification of the solution. When parameter verifySolutions is set to true (the default), then the solver verifies all solutions found. The verification checks that all constraints in the model are satisfied and that the objective value is computed correctly. The verification is done by a separate code that is not used during the search. The point is to verify independently the correctness of the solution. Possible values are: * undefined - the solution was not verified (because the parameter verifySolutions was not set). * true - the solution was verified and it is correct. The value can never be false because in this case the solver would stop with an error.