You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/release_notes.rst
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@ Release Notes
2
2
=============
3
3
4
4
Upcoming Version
5
-
----------------
6
5
7
6
* Replace pandas-based LP file writing with polars implementation for significantly improved performance on large models
8
7
* Consolidate "lp" and "lp-polars" io_api options - both now use the optimized polars backend
@@ -37,7 +36,7 @@ Version 0.5.4
37
36
**Bug Fixes**
38
37
39
38
* Remove default highs log file when `log_fn=None` and `io_api="direct"`. This caused `log_file` in
40
-
`solver_options` to be ignored.
39
+
`solver_options` to be ignored.
41
40
* Fix the parsing of solutions returned by the CBC solver when setting a MIP duality
42
41
gap tolerance.
43
42
* Improve the mapping of termination conditions for the SCIP solver
@@ -65,8 +64,8 @@ Version 0.5.2
65
64
**Bug Fixes**
66
65
67
66
* Fix the multiplication with of zero dimensional numpy arrays with linopy objects.
68
-
This is mainly affecting operations where single numerical items from pandas objects
69
-
are selected and used for multiplication.
67
+
This is mainly affecting operations where single numerical items from pandas objects
68
+
are selected and used for multiplication.
70
69
71
70
Version 0.5.1
72
71
--------------
@@ -199,7 +198,7 @@ Version 0.3.9
199
198
200
199
* The constraint assignment with a `LinearExpression` and a constant value when using the pattern `model.add_constraints(lhs_with_constant, sign, rhs)` was fixed. Before, the constant value was not added to the right-hand-side properly which led to the wrong constraint behavior. This is fixed now.
201
200
202
-
* `nan`s in constants is now handled more consistently. These are ignored when in the addition of expressions (effectively filled by zero). In a future version, this might change to align the propagation of `nan`s with tools like numpy/pandas/xarray.
201
+
* ``nan`` s in constants is now handled more consistently. These are ignored when in the addition of expressions (effectively filled by zero). In a future version, this might change to align the propagation of ``nan`` s with tools like numpy/pandas/xarray.
203
202
204
203
* Up to now the `rhs` argument in the `add_constraints` function was not supporting an expression as an input type. This is now added.
Copy file name to clipboardExpand all lines: examples/creating-expressions.ipynb
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -160,10 +160,7 @@
160
160
"cell_type": "markdown",
161
161
"id": "f7578221",
162
162
"metadata": {},
163
-
"source": [
164
-
".. important::\n",
165
-
" When combining variables or expression with dimensions of the same name and size, the first object will determine the coordinates of the resulting expression. For example: "
166
-
]
163
+
"source": ".. important::\n\n\tWhen combining variables or expression with dimensions of the same name and size, the first object will determine the coordinates of the resulting expression. For example:"
Copy file name to clipboardExpand all lines: examples/creating-variables.ipynb
+1-7Lines changed: 1 addition & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -467,13 +467,7 @@
467
467
"cell_type": "markdown",
468
468
"id": "77e264e2",
469
469
"metadata": {},
470
-
"source": [
471
-
".. important::\n",
472
-
"\n",
473
-
" **New in version 0.3.6**\n",
474
-
"\n",
475
-
" As pandas objects always have indexes, the `coords` argument is not required and is ignored is passed. Before, it was used to overwrite the indexes of the pandas objects. A warning is raised if `coords` is passed and if these are not aligned with the pandas object. "
476
-
]
470
+
"source": ".. important::\n\n **New in version 0.3.6**\n\n As pandas objects always have indexes, the `coords` argument is not required and is ignored is passed. Before, it was used to overwrite the indexes of the pandas objects. A warning is raised if `coords` is passed and if these are not aligned with the pandas object."
0 commit comments