We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44d6c7f commit 285fb42Copy full SHA for 285fb42
2 files changed
doc/release_notes.rst
@@ -6,6 +6,8 @@ Upcoming Version
6
7
**Bug Fixes**
8
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.
11
* Fix the parsing of solutions returned by the CBC solver when setting a MIP duality
12
gap tolerance.
13
* Improve the mapping of termination conditions for the SCIP solver
linopy/solvers.py
@@ -752,9 +752,6 @@ def solve_problem_from_model(
752
753
h = model.to_highspy(explicit_coordinate_names=explicit_coordinate_names)
754
755
- if log_fn is None and model is not None:
756
- log_fn = model.solver_dir / "highs.log"
757
-
758
return self._solve(
759
h,
760
solution_fn,
0 commit comments