Is there any to check whether the MIP solver (SCIP) is actually warm starting ? #3375
Replies: 3 comments 4 replies
|
apart from enabling the solver log, I have no ideas. |
1 reply
|
solver.EnableOutput()
Laurent Perron | Operations Research | ***@***.*** | (33) 1 42 68 53
00
Le ven. 8 juil. 2022 à 10:45, watchdogs132 ***@***.***> a
écrit :
… Hi,
Actually, after writing the question, I thought of enabling the solver log
but couldn't find any syntax for it in the documentation
<https://developers.google.com/optimization/mip/mip_var_array#complete_programs>
How do I enable the solver log?
—
Reply to this email directly, view it on GitHub
<#3375 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACUPL3PTI33VWPTLSFYV2JLVS7TC3ANCNFSM522J2W2Q>
.
You are receiving this because you commented.Message ID:
<google/or-tools/repo-discussions/3375/comments/3106164 ***@***.***
com>
|
0 replies
Answer selected by
Regista6
|
What about export of your model from ortools to format accepted by scip like lp ? In case it works worse directly from scip, your hints work. In case their performance is same no hints are used. |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I am using the
SetHintfunction (std::vector<std::pair<const MPVariable*, double> > hint) to set the values of the decision variable as per the initial solution that I have.I can't determine whether the solver is actually starting from this solution. Is there any way to check that?
Secondly, since I am warm starting, shouldn't the final objective value be at least equal to that of the initial solution?. This doesn't seem to be the case.
Using or-tools v9.3 on VS 2022.
All reactions