Highs Iterative Solve #2186
akhilesh-bayer
started this conversation in
General
Replies: 2 comments 1 reply
-
If HiGHS is taking time between displaying the coefficient ranges and reporting on simplex iterations, then that's nothing to do with the Python interface. How large is your problem? I would always recommend using C++ over Python |
Beta Was this translation helpful? Give feedback.
0 replies
-
My problem has 206386 columns, 148294 rows and 570950 non zeros. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am doing iterative solve in Highs using Python API, where after reading a solution, I am adding constraint with addRows method. However, while solving, it is again loaded into memory where it displays Coefficient ranges:, then solve with existing basis and then simplex iteration starts. However, this process takes some time until simplex iteration starts. Any pointers how I can minimize this time? If I use C++ API, would that be of any help?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions