Open mtth opened 1 year ago
https://ergo-code.github.io/HiGHS/stable/callbacks/
Possible API, extending solve monitors:
await solver.solve({ monitor: solveMonitor() .on('mipIteration', (data) => /* ... */) .on('simplexIteration', (data) => /* ... */) // ... });
This can also be used to simplify the current progress implementation.
https://ergo-code.github.io/HiGHS/stable/callbacks/
Possible API, extending solve monitors:
This can also be used to simplify the current progress implementation.