Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 22, 2024
1 parent d5586a5 commit 948e79d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions technical/solvers.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,9 @@
<li><p><strong>keepFiles</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, files are saved in the current directory and not deleted after solving</p></li>
<li><p><strong>path</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.13)"><em>str</em></a>) – path to the solver binary</p></li>
<li><p><strong>logPath</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.13)"><em>str</em></a>) – path to the log file</p></li>
<li><p><strong>presolve</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds presolve on</p></li>
<li><p><strong>cuts</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds gomory on knapsack on probing on</p></li>
<li><p><strong>strong</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds strong</p></li>
<li><p><strong>presolve</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds presolve on, if False, adds presolve off</p></li>
<li><p><strong>cuts</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds gomory on knapsack on probing on, if False adds cuts off</p></li>
<li><p><strong>strong</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.13)"><em>int</em></a>) – number of variables to look at in strong branching (range is 0 to 2147483647)</p></li>
<li><p><strong>timeMode</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.13)"><em>str</em></a>) – “elapsed”: count wall-time to timeLimit; “cpu”: count cpu-time</p></li>
<li><p><strong>maxNodes</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.13)"><em>int</em></a>) – max number of nodes during branching. Stops the solving when reached.</p></li>
</ul>
Expand Down Expand Up @@ -1368,9 +1368,9 @@
<li><p><strong>keepFiles</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, files are saved in the current directory and not deleted after solving</p></li>
<li><p><strong>path</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.13)"><em>str</em></a>) – path to the solver binary</p></li>
<li><p><strong>logPath</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.13)"><em>str</em></a>) – path to the log file</p></li>
<li><p><strong>presolve</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds presolve on</p></li>
<li><p><strong>cuts</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds gomory on knapsack on probing on</p></li>
<li><p><strong>strong</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds strong</p></li>
<li><p><strong>presolve</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds presolve on, if False, adds presolve off</p></li>
<li><p><strong>cuts</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#bool" title="(in Python v3.13)"><em>bool</em></a>) – if True, adds gomory on knapsack on probing on, if False adds cuts off</p></li>
<li><p><strong>strong</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.13)"><em>int</em></a>) – number of variables to look at in strong branching (range is 0 to 2147483647)</p></li>
<li><p><strong>timeMode</strong> (<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.13)"><em>str</em></a>) – “elapsed”: count wall-time to timeLimit; “cpu”: count cpu-time</p></li>
<li><p><strong>maxNodes</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.13)"><em>int</em></a>) – max number of nodes during branching. Stops the solving when reached.</p></li>
</ul>
Expand Down

0 comments on commit 948e79d

Please sign in to comment.