Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
### Fixed
- Fixed Cython 3.3 compatibility (#1248)
- Made `test_markDoNotAggrVar_and_getStatus` robust to SCIP presolve changes by discovering the aggregated/multi-aggregated variables instead of hardcoding them
- Fixed warnings present in parallel tests execution
### Changed
- Move magic methods (`__radd__`, `__sub__`, `__rsub__`, `__rmul__`, `__richcmp__`, `__neg__`, and `__rtruediv__`) to `ExprLike` base class (#1204)
- Speed up `Expr.__add__` and `Expr.__iadd__` via the C-level API (#1205)
Expand Down
2 changes: 2 additions & 0 deletions tests/test_customizedbenders.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ def flpbenders_defcuts_test():

master.printStatistics()

testbd.subprob.free()
return master.getObjVal()

def flpbenders_customcuts_test():
Expand Down Expand Up @@ -273,6 +274,7 @@ def flpbenders_customcuts_test():

master.printStatistics()

testbd.subprob.free()
return master.getObjVal()

def flp_test():
Expand Down
Loading