<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
<p>Hi SCIP Team.</p>
<p><br>
</p>
<p>At the moment I am experimenting with my branch-and-price-and-cut solver and I try to stop pricing when the root node LP relaxation is solved to optimality. I wondered if SCIP is able to just use the current (integer) reduced master problem and execute all
 that fancy propagators, separators and heuristics to solve it without pricing any further columns.</p>
<p><br>
</p>
<p>The implementation of my pricer just looks at the depth of the current node and deactivates my pricer as soon as depth is >0. Of course I set the modifiable flag to false for all constraints. In the logs I see that propagators and separators are doing their
 job pretty well. However, as soon as I am doing a restart to make all the presolvers run, I get an error message stating that </p>
<p><br>
</p>
<p></p>
<div>cons components found 3 undirected components at node 1, depth 0 (0)</div>
<div>[paramset.c:1826] ERROR: parameter <limits/softtime> unknown</div>
<div>[set.c:3061] ERROR: Error <-12> in function call</div>
<div>[scip_param.c:307] ERROR: Error <-12> in function call</div>
<div>[cons_components.c:678] ERROR: Error <-12> in function call</div>
<div>[cons_components.c:760] ERROR: Error <-12> in function call</div>
<div>[cons_components.c:2449] ERROR: Error <-12> in function call</div>
<div>[cons.c:4071] ERROR: Error <-12> in function call</div>
<div>[scip_solve.c:1008] ERROR: Error <-12> in function call</div>
<div>[scip_solve.c:1214] ERROR: Error <-12> in function call</div>
<div>[scip_solve.c:1214] ERROR: Error <-12> in function call</div>
<div>[scip_solve.c:1214] ERROR: Error <-12> in function call</div>
<div>[scip_solve.c:1378] ERROR: Error <-12> in function call</div>
<div>[scip_solve.c:2398] ERROR: Error <-12> in function call</div>
<div>[scip_solve.c:2620] ERROR: Error <-12> in function call</div>
<br>
<p></p>
<p>The independent components constraint handler is just trying to read the parameter "<span style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">limits/softtime</span>".
 I am not sure why that could stop working from the changes that I have made to my pricer. Any idea what I am doing wrong here? I attach the full SCIP log of an example run.</p>
<p><br>
</p>
<p>Regards</p>
<p>Christian</p>
<p><br>
</p>
</div>
</body>
</html>