-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Imprecise interation Count #132
Comments
I don't have any advice. I'd suggest you use HiGHS instead: https://github.com/jump-dev/HiGHS.jl. |
Clp_getIterationCount can return nonzero count for some other model.For example, here is the last line in the log file of the instance "buildingenergy"
Clp_getIterationCount returns 29988 |
I think the problem lies in CLP, not in the julia wrapper. |
If it's upstream in Clp, there's not much we can do. Do you have the MPS file and list of options you provided to Clp? |
Closing as stale, and because this isn't a bug in Clp.jl. |
Hello. When I test CLP on the large-scale dataset MIPLIB, I find that the iteration count output by CLP is imprecise.
For example, here is the log file of the instance "nug15", by using ipm with crossover:
As shown in the last line, the iteration count is 0.
Clp_getIterationCount(unsafe_backend(model))
also returns 0.I don't think this is a reasonable result.
What I want is to get the exact iteration count of the iterior point methd (does not include crossover steps). Could you please give some advice?
The text was updated successfully, but these errors were encountered: