Skip to content
Open
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
### Added
- Added `addConsCumulative()` for SCIP cumulative constraints (#1222)
- Added type annotations to most methods on the `Model` class
### Fixed
### Changed
- Move magic methods (`__radd__`, `__sub__`, `__rsub__`, `__rmul__`, `__richcmp__`, `__neg__`, and `__rtruediv__`) to `ExprLike` base class (#1204)
Expand Down
4 changes: 2 additions & 2 deletions src/pyscipopt/scip.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -10308,7 +10308,7 @@ cdef class Model:

Returns
-------
int
float
node selection priority for moving the given variable's LP value to the given target value

"""
Expand Down Expand Up @@ -10341,7 +10341,7 @@ cdef class Model:

Parameters
----------
nodeselprio : int
nodeselprio : float
node selection priority of new node
estimate : float
estimate for (transformed) objective value of best feasible solution in subtree
Expand Down
Loading
Loading