Skip to main content

Type alias: LowerBoundEvent

Ƭ LowerBoundEvent: Object

An event that is emitted by Solver when a new (i.e. better) lower bound of the objective is found.

The event can be intercepted by calling Solver.on("lower bound", ...) with "lowerBound" event name. The event contains the new lower bound and the solving time so far.

See

Type declaration

NameTypeDescription
solveTimenumberDuration of the solve at the time the lower bound was found, in seconds.
valueObjectiveValueThe new lower bound of the objective.