Skip to content

Commit 76197c5

Browse files
authored
Merge pull request #963 from scipopt/tutorial-sepa-fix
Fix minor typos in docstring and separator documentation
2 parents a230bd0 + 4c9c121 commit 76197c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/tutorials/separator.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
##########################
2-
Seperator (Cutting Planes)
2+
Separator (Cutting Planes)
33
##########################
44

55
For the following let us assume that a Model object is available, which is created as follows:
@@ -307,5 +307,5 @@ The GMI separator can then be included using the following code:
307307
.. code-block:: python
308308
309309
sepa = GMI()
310-
scip.includeSepa(sepa, "python_gmi", "generates gomory mixed integer cuts", priorityS=1000, freq=1)
310+
scip.includeSepa(sepa, "python_gmi", "generates gomory mixed integer cuts", priority=1000, freq=1)
311311

src/pyscipopt/scip.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9244,7 +9244,7 @@ cdef class Model:
92449244
92459245
Parameters
92469246
----------
9247-
expr : Expr
9247+
expr : Expr ot MatrixExpr
92489248
polynomial expression to query the value of
92499249
92509250
Returns

0 commit comments

Comments
 (0)