From 4c9c1214fad3561550d3b4edb596d274d842b595 Mon Sep 17 00:00:00 2001 From: Joao-Dionisio Date: Mon, 10 Mar 2025 14:01:26 +0100 Subject: [PATCH] Fix minor typos --- docs/tutorials/separator.rst | 4 ++-- src/pyscipopt/scip.pxi | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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