-
Hi, i'm running multiple instances of a model with a parameter. I want to evaluate how does the model variates his complexity as i increase the above parameter. I tought to avoid performance related biases to evaluate the growing complexity as number of the iterations of the simplex within highs. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
Fundamentally, the simplex iteration count is available from the C++ data structure https://ergo-code.github.io/HiGHS/dev/structures/classes/HighsInfo/#HighsInfo The same information is available via other language interfaces. If not C++, what are you using? |
Beta Was this translation helpful? Give feedback.
It would appear from
https://docs.rs/highs-sys/1.6.2/highs_sys/
that you can use
https://docs.rs/highs-sys/1.6.2/highs_sys/fn.Highs_getIntInfoValue.html
by passing the name "simplex_iteration_count"