Skip to content
Merged
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
2 changes: 2 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Upcoming Version

**Bug Fixes**

* Remove default highs log file when `log_fn=None` and `io_api="direct"`. This caused `log_file` in
`solver_options` to be ignored.
* Fix the parsing of solutions returned by the CBC solver when setting a MIP duality
gap tolerance.
* Improve the mapping of termination conditions for the SCIP solver
Expand Down
3 changes: 0 additions & 3 deletions linopy/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,9 +752,6 @@ def solve_problem_from_model(

h = model.to_highspy(explicit_coordinate_names=explicit_coordinate_names)

if log_fn is None and model is not None:
log_fn = model.solver_dir / "highs.log"

return self._solve(
h,
solution_fn,
Expand Down
Loading