diff --git a/docs/tutorials/separator.rst b/docs/tutorials/separator.rst index dabd46d5b..342e3823b 100644 --- a/docs/tutorials/separator.rst +++ b/docs/tutorials/separator.rst @@ -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: @@ -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) diff --git a/src/pyscipopt/scip.pxi b/src/pyscipopt/scip.pxi index b91acdd4d..f1dfdf17c 100644 --- a/src/pyscipopt/scip.pxi +++ b/src/pyscipopt/scip.pxi @@ -9244,7 +9244,7 @@ cdef class Model: Parameters ---------- - expr : Expr + expr : Expr ot MatrixExpr polynomial expression to query the value of Returns