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
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
run: echo "INCLUDE_IPOPT=1" >> $GITHUB_ENV

- name: Include OSQP?
if: startsWith(matrix.os, 'ubuntu')
run: echo "INCLUDE_OSQP=1" >> $GITHUB_ENV

- name: Cache IPOPT Libs (macOS)
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ For change history for [MP-Opt-Model][27], see [mp-opt-model/CHANGES.md](mp-opt-
For change history for [MOST][3], see [most/CHANGES.md](most/CHANGES.md).


since version 8.1
-----------------

#### 9/25/25
- Skip failing interior point algorithm for R2025b `linprog` in DC OPF tests.


Version 8.1 - *Jul 12, 2025
---------------------------

Expand Down
4 changes: 2 additions & 2 deletions lib/mpver.m
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
% v{1} = ver(p);

v{1} = struct( 'Name', 'MATPOWER', ...
'Version', '8.1', ...
'Version', '8.1.1-dev', ...
'Release', '', ...
'Date', '12-Jul-2025' );
'Date', '25-Sep-2025' );
if nargout > 0
if nargin > 0
rv = v{1};
Expand Down
2 changes: 1 addition & 1 deletion lib/t/t_opf_dc_ot.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function t_opf_dc_ot(quiet)
if have_feature('optimoptions')
if have_feature('linprog_ds')
if have_feature('quadprog', 'vnum') >= 7.005 %% R2016b and later
if have_feature('matlab', 'vnum') == 25.001
if have_feature('matlab', 'vnum') == 25.001 || have_feature('matlab', 'vnum') == 25.002
algs = {'dual-simplex'};
else
algs = {'interior-point', 'dual-simplex'};
Expand Down
Loading