Skip to content

Commit 4c9c121

Browse files
committed
Fix minor typos
1 parent a230bd0 commit 4c9c121

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/tutorials/separator.rst

+2-2
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

+1-1
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)