Skip to content

Commit f335b56

Browse files
Expose NODETYPE (#1096)
* add lpparam and nodetype * Update src/pyscipopt/__init__.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 765ff64 commit f335b56

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

src/pyscipopt/__init__.py

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,19 @@
3939
from pyscipopt.scip import sqrt as sqrt
4040
from pyscipopt.scip import sin as sin
4141
from pyscipopt.scip import cos as cos
42-
from pyscipopt.scip import PY_SCIP_RESULT as SCIP_RESULT
43-
from pyscipopt.scip import PY_SCIP_PARAMSETTING as SCIP_PARAMSETTING
44-
from pyscipopt.scip import PY_SCIP_PARAMEMPHASIS as SCIP_PARAMEMPHASIS
45-
from pyscipopt.scip import PY_SCIP_STATUS as SCIP_STATUS
46-
from pyscipopt.scip import PY_SCIP_STAGE as SCIP_STAGE
47-
from pyscipopt.scip import PY_SCIP_PROPTIMING as SCIP_PROPTIMING
48-
from pyscipopt.scip import PY_SCIP_PRESOLTIMING as SCIP_PRESOLTIMING
49-
from pyscipopt.scip import PY_SCIP_HEURTIMING as SCIP_HEURTIMING
50-
from pyscipopt.scip import PY_SCIP_EVENTTYPE as SCIP_EVENTTYPE
51-
from pyscipopt.scip import PY_SCIP_LOCKTYPE as SCIP_LOCKTYPE
52-
from pyscipopt.scip import PY_SCIP_LPSOLSTAT as SCIP_LPSOLSTAT
53-
from pyscipopt.scip import PY_SCIP_BRANCHDIR as SCIP_BRANCHDIR
42+
from pyscipopt.scip import PY_SCIP_RESULT as SCIP_RESULT
43+
from pyscipopt.scip import PY_SCIP_PARAMSETTING as SCIP_PARAMSETTING
44+
from pyscipopt.scip import PY_SCIP_PARAMEMPHASIS as SCIP_PARAMEMPHASIS
45+
from pyscipopt.scip import PY_SCIP_STATUS as SCIP_STATUS
46+
from pyscipopt.scip import PY_SCIP_STAGE as SCIP_STAGE
47+
from pyscipopt.scip import PY_SCIP_NODETYPE as SCIP_NODETYPE
48+
from pyscipopt.scip import PY_SCIP_PROPTIMING as SCIP_PROPTIMING
49+
from pyscipopt.scip import PY_SCIP_PRESOLTIMING as SCIP_PRESOLTIMING
50+
from pyscipopt.scip import PY_SCIP_HEURTIMING as SCIP_HEURTIMING
51+
from pyscipopt.scip import PY_SCIP_EVENTTYPE as SCIP_EVENTTYPE
52+
from pyscipopt.scip import PY_SCIP_LOCKTYPE as SCIP_LOCKTYPE
53+
from pyscipopt.scip import PY_SCIP_LPSOLSTAT as SCIP_LPSOLSTAT
54+
from pyscipopt.scip import PY_SCIP_BRANCHDIR as SCIP_BRANCHDIR
5455
from pyscipopt.scip import PY_SCIP_BENDERSENFOTYPE as SCIP_BENDERSENFOTYPE
55-
from pyscipopt.scip import PY_SCIP_ROWORIGINTYPE as SCIP_ROWORIGINTYPE
56-
from pyscipopt.scip import PY_SCIP_SOLORIGIN as SCIP_SOLORIGIN
56+
from pyscipopt.scip import PY_SCIP_ROWORIGINTYPE as SCIP_ROWORIGINTYPE
57+
from pyscipopt.scip import PY_SCIP_SOLORIGIN as SCIP_SOLORIGIN

0 commit comments

Comments
 (0)