<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html;
      charset=windows-1252">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hello Shaon,<br>
    <br>
    SCIP does not have a dedicated function to query the total root node
    time. You can query the time that was needed to solve the initial
    root LP calling SCIPgetFirstLPTime(scip).<br>
    <br>
    If you want to know the total time that root node solving takes, set
    a node limit of 1 to the solving process, such that it is
    interrupted at the end of the root, and you can query the normal
    solving time of SCIP using SCIPgetSolvingTime(scip).<br>
    If presolving takes long, you may want to subtract
    SCIPclockGetTime(scip->stat->presolvetime).<br>
    <br>
    After this, you disable the node limit and continue the solution
    process as usual.<br>
    <br>
    Best,<br>
    Gregor<br>
    <br>
    <div class="moz-cite-prefix">Am 17.05.2018 um 06:21 schrieb
      <a class="moz-txt-link-abbreviated" href="mailto:lixiangyong@163.com">lixiangyong@163.com</a>:<br>
    </div>
    <blockquote type="cite" cite="mid:201805171221331992972@163.com">
      <meta http-equiv="content-type" content="text/html;
        charset=windows-1252">
      <style>body { line-height: 1.5; }body { font-size: 10.5pt; font-family: 'Microsoft YaHei UI'; color: rgb(0, 0, 0); line-height: 1.5; }</style>
      <div><span></span>Dear all,</div>
      <div><br>
      </div>
      <div>In a branch-and-price method, I want to get the time for
        solving the root node. </div>
      <div><br>
      </div>
      <div>Is there any SCIP function for this value?</div>
      <div><br>
      </div>
      <div>Thanks,</div>
      <div><br>
      </div>
      <div><br>
      </div>
      <div>Shaon</div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
Scip mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Scip@zib.de">Scip@zib.de</a>
<a class="moz-txt-link-freetext" href="https://listserv.zib.de/mailman/listinfo/scip">https://listserv.zib.de/mailman/listinfo/scip</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>