From d9f1fd851f6cd242a20f1840348b0526e1e87465 Mon Sep 17 00:00:00 2001 From: Joao-Dionisio Date: Wed, 29 Oct 2025 13:27:15 +0000 Subject: [PATCH 1/2] add lpparam and nodetype --- src/pyscipopt/__init__.py | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/pyscipopt/__init__.py b/src/pyscipopt/__init__.py index 4a5942a96..1e494bb32 100644 --- a/src/pyscipopt/__init__.py +++ b/src/pyscipopt/__init__.py @@ -39,18 +39,20 @@ from pyscipopt.scip import sqrt as sqrt from pyscipopt.scip import sin as sin from pyscipopt.scip import cos as cos -from pyscipopt.scip import PY_SCIP_RESULT as SCIP_RESULT -from pyscipopt.scip import PY_SCIP_PARAMSETTING as SCIP_PARAMSETTING -from pyscipopt.scip import PY_SCIP_PARAMEMPHASIS as SCIP_PARAMEMPHASIS -from pyscipopt.scip import PY_SCIP_STATUS as SCIP_STATUS -from pyscipopt.scip import PY_SCIP_STAGE as SCIP_STAGE -from pyscipopt.scip import PY_SCIP_PROPTIMING as SCIP_PROPTIMING -from pyscipopt.scip import PY_SCIP_PRESOLTIMING as SCIP_PRESOLTIMING -from pyscipopt.scip import PY_SCIP_HEURTIMING as SCIP_HEURTIMING -from pyscipopt.scip import PY_SCIP_EVENTTYPE as SCIP_EVENTTYPE -from pyscipopt.scip import PY_SCIP_LOCKTYPE as SCIP_LOCKTYPE -from pyscipopt.scip import PY_SCIP_LPSOLSTAT as SCIP_LPSOLSTAT -from pyscipopt.scip import PY_SCIP_BRANCHDIR as SCIP_BRANCHDIR +from pyscipopt.scip import PY_SCIP_RESULT as SCIP_RESULT +from pyscipopt.scip import PY_SCIP_PARAMSETTING as SCIP_PARAMSETTING +from pyscipopt.scip import PY_SCIP_LPPARAM as SCIP_LPPARAM +from pyscipopt.scip import PY_SCIP_PARAMEMPHASIS as SCIP_PARAMEMPHASIS +from pyscipopt.scip import PY_SCIP_STATUS as SCIP_STATUS +from pyscipopt.scip import PY_SCIP_STAGE as SCIP_STAGE +from pyscipopt.scip import PY_SCIP_NODETYPE as SCIP_NODETYPE +from pyscipopt.scip import PY_SCIP_PROPTIMING as SCIP_PROPTIMING +from pyscipopt.scip import PY_SCIP_PRESOLTIMING as SCIP_PRESOLTIMING +from pyscipopt.scip import PY_SCIP_HEURTIMING as SCIP_HEURTIMING +from pyscipopt.scip import PY_SCIP_EVENTTYPE as SCIP_EVENTTYPE +from pyscipopt.scip import PY_SCIP_LOCKTYPE as SCIP_LOCKTYPE +from pyscipopt.scip import PY_SCIP_LPSOLSTAT as SCIP_LPSOLSTAT +from pyscipopt.scip import PY_SCIP_BRANCHDIR as SCIP_BRANCHDIR from pyscipopt.scip import PY_SCIP_BENDERSENFOTYPE as SCIP_BENDERSENFOTYPE -from pyscipopt.scip import PY_SCIP_ROWORIGINTYPE as SCIP_ROWORIGINTYPE -from pyscipopt.scip import PY_SCIP_SOLORIGIN as SCIP_SOLORIGIN +from pyscipopt.scip import PY_SCIP_ROWORIGINTYPE as SCIP_ROWORIGINTYPE +from pyscipopt.scip import PY_SCIP_SOLORIGIN as SCIP_SOLORIGIN From 38e8b7657c93b9648ef789bb78cf7f9b1e4c9a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Dion=C3=ADsio?= <57299939+Joao-Dionisio@users.noreply.github.com> Date: Wed, 29 Oct 2025 13:30:58 +0000 Subject: [PATCH 2/2] Update src/pyscipopt/__init__.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/pyscipopt/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pyscipopt/__init__.py b/src/pyscipopt/__init__.py index 1e494bb32..004cca05b 100644 --- a/src/pyscipopt/__init__.py +++ b/src/pyscipopt/__init__.py @@ -41,7 +41,6 @@ from pyscipopt.scip import cos as cos from pyscipopt.scip import PY_SCIP_RESULT as SCIP_RESULT from pyscipopt.scip import PY_SCIP_PARAMSETTING as SCIP_PARAMSETTING -from pyscipopt.scip import PY_SCIP_LPPARAM as SCIP_LPPARAM from pyscipopt.scip import PY_SCIP_PARAMEMPHASIS as SCIP_PARAMEMPHASIS from pyscipopt.scip import PY_SCIP_STATUS as SCIP_STATUS from pyscipopt.scip import PY_SCIP_STAGE as SCIP_STAGE