<div dir="ltr">Thanks All for reply,<div><br></div><div>How can I load a .sol file in scip command line?</div><div><br></div><div>I can read the problem but I did not found any command to evaluate the problem with the given solution.</div>
<div><br></div><div>Thanks.</div><div><br></div><div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2014-07-15 12:55 GMT-03:00  <span dir="ltr"><<a href="mailto:michael.winkler@zib.de" target="_blank">michael.winkler@zib.de</a>></span>:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Alan,<br>
<div class=""><br>
> Hi,<br>
><br>
> I have a large problem to solve:<br>
><br>
> original problem has 3646 variables (503 bin, 0 int, 0 impl, 3143 cont)<br>
> and<br>
> 7619 constraints<br>
><br>
> I know this problem has a solution because gurobi solve it very fast and<br>
> scip says me it is infeasible.<br>
><br>
<br>
</div>This does not necessary mean that the problem is feasible (nor that it is<br>
infeasible). Probably your model is numerically not well-conditioned or<br>
there is a bug. Maybe you can send the model to me directly and I can have<br>
a look.<br>
<br>
Most of your changed parameters do not influence the result of SCIPs run.<br>
<div class=""><br>
> For now i am using this sets of configurations:<br>
><br>
> # maximal time in seconds to run<br>
> # [type: real, range: [0,1.79769313486232e+308], default: 1e+20]<br>
> limits/time = 1000<br>
><br>
> # solving stops, if the absolute gap = |primalbound - dualbound| is below<br>
> the given value<br>
> # [type: real, range: [0,1.79769313486232e+308], default: 0]<br>
> limits/absgap = 1e-5<br>
><br>
> # solving stops, if the relative gap = |primal -<br>
> dual|/MIN(|dual|,|primal|)<br>
> is below the given value<br>
> # [type: real, range: [0,1.79769313486232e+308], default: 0]<br>
> limits/gap = 0.0001<br>
><br>
</div><div class="">> # maximal number of nodes to process (-1: no limit)<br>
> # [type: longint, range: [-1,9223372036854775807], default: -1]<br>
> limits/nodes = 40000<br>
><br>
> # maximal number of total nodes (incl. restarts) to process (-1: no limit)<br>
> # [type: longint, range: [-1,9223372036854775807], default: -1]<br>
> limits/totalnodes = 200000<br>
><br>
<br>
</div>All the above only lead to an early termination of the optimization<br>
process. (Also the totalnodes of 200000 are certainly not reached because<br>
the nodelimit of 40000 per run will be enough.)<br>
<div class=""><br>
> # maximal memory usage in MB; reported memory usage is lower than real<br>
> memory usage!<br>
> # [type: real, range: [0,1.79769313486232e+308], default: 1e+20]<br>
> limits/memory = 250<br>
><br>
<br>
</div>This can change the solution path in the B&B tree, but will most likely<br>
also lead to a early termination.<br>
<div class=""><br>
> # feasibility tolerance for constraints<br>
> # [type: real, range: [1e-17,0.001], default: 1e-06]<br>
> numerics/feastol = 1e-8<br>
><br>
<br>
</div>By decreasing the feasibility tolerance values above, you force SCIP to<br>
solve your model "more correctly". Maybe you want to relax the feasibility<br>
tolerance to allow slightly violated solutions?<br>
<div class=""><br>
> What other configurations i can set to try to make my problem feasible? Or<br>
> what changes can I make to its set of configurations?<br>
><br>
<br>
</div>If you send us/me the model, maybe we/I can say more.<br>
<div class=""><br>
> In the gurobi solution there are many small negative values, how do i<br>
> allow<br>
> this kind of things in scip?<br>
><br>
<br>
</div>Does this mean, that these values are slighty outside the bounds? Then<br>
maybe decreasing the feasibility tolerance can help, but actually there is<br>
no guarantee to find such a solution.<br>
<br>
You should also check if Gurobis solution is feasible by copying the<br>
solution into a .sol file and reading it into SCIP (after the problem was<br>
read). Then start optimizing, and the solution will then be checked.<br>
<br>
Best, Michael<br>
<div class="im HOEnZb"><br>
> Thanks.<br>
><br>
> --<br>
> Até.<br>
><br>
> Alan Porto Bontempo<br>
</div><div class="HOEnZb"><div class="h5">> _______________________________________________<br>
> Scip mailing list<br>
> <a href="mailto:Scip@zib.de">Scip@zib.de</a><br>
> <a href="http://listserv.zib.de/mailman/listinfo/scip" target="_blank">http://listserv.zib.de/mailman/listinfo/scip</a><br>
><br>
<br>
<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>Até.<br><br>Alan Porto Bontempo
</div>