Skip to content

Commit 285fb42

Browse files
fix: remove highs log file default (#445)
* fix: remove highs log file default * docs: add release note --------- Co-authored-by: Fabian Hofmann <[email protected]>
1 parent 44d6c7f commit 285fb42

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

doc/release_notes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Upcoming Version
66

77
**Bug Fixes**
88

9+
* Remove default highs log file when `log_fn=None` and `io_api="direct"`. This caused `log_file` in
10+
`solver_options` to be ignored.
911
* Fix the parsing of solutions returned by the CBC solver when setting a MIP duality
1012
gap tolerance.
1113
* Improve the mapping of termination conditions for the SCIP solver

linopy/solvers.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -752,9 +752,6 @@ def solve_problem_from_model(
752752

753753
h = model.to_highspy(explicit_coordinate_names=explicit_coordinate_names)
754754

755-
if log_fn is None and model is not None:
756-
log_fn = model.solver_dir / "highs.log"
757-
758755
return self._solve(
759756
h,
760757
solution_fn,

0 commit comments

Comments
 (0)