Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorials/separator.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##########################
Seperator (Cutting Planes)
Separator (Cutting Planes)
##########################

For the following let us assume that a Model object is available, which is created as follows:
Expand Down Expand Up @@ -307,5 +307,5 @@ The GMI separator can then be included using the following code:
.. code-block:: python

sepa = GMI()
scip.includeSepa(sepa, "python_gmi", "generates gomory mixed integer cuts", priorityS=1000, freq=1)
scip.includeSepa(sepa, "python_gmi", "generates gomory mixed integer cuts", priority=1000, freq=1)

2 changes: 1 addition & 1 deletion src/pyscipopt/scip.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@
if rc == SCIP_OKAY:
pass
elif rc == SCIP_ERROR:
raise Exception('SCIP: unspecified error!')

Check failure on line 279 in src/pyscipopt/scip.pxi

View workflow job for this annotation

GitHub Actions / test-coverage (3.11)

SCIP: unspecified error!
elif rc == SCIP_NOMEMORY:
raise MemoryError('SCIP: insufficient memory error!')
elif rc == SCIP_READERROR:
Expand Down Expand Up @@ -9244,7 +9244,7 @@

Parameters
----------
expr : Expr
expr : Expr ot MatrixExpr
polynomial expression to query the value of

Returns
Expand Down
Loading