Skip to content

Commit 41789c0

Browse files
Ray Zimmermanrdzman
authored andcommitted
Improve reliability of detection of CLP MEX file.
1 parent 864e55b commit 41789c0

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@ Change history for MP-Opt-Model
22
===============================
33

44

5+
since version 5.0
6+
-----------------
7+
8+
#### 9/25/25
9+
- Improve reliability of detection of CLP MEX file.
10+
11+
#### 7/18/25
12+
- Fix failing tests in `t_qcqps_master` when `'DEFAULT'` implies `'FMINCON'`
13+
(as in MATLAB Online).
14+
15+
516
Version 5.0 - *Jul 12, 2025*
617
----------------------------
718

lib/have_feature_opti_clp.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
% Covered by the 3-clause BSD License (see LICENSE file for details).
1717
% See https://github.com/MATPOWER/mp-opt-model for more info.
1818

19+
s = which('clp'); %% help it find .mex* before .m
1920
TorF = exist('opti_clp', 'file') == 2 && exist('clp', 'file') == 3;
2021
vstr = '';
2122
rdate = '';

lib/mpomver.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
% See https://github.com/MATPOWER/mp-opt-model for more info.
2525

2626
v = struct( 'Name', 'MP-Opt-Model', ...
27-
'Version', '5.0', ...
27+
'Version', '5.0.1-dev', ...
2828
'Release', '', ...
29-
'Date', '12-Jul-2025' );
29+
'Date', '25-Sep-2025' );
3030
if nargout > 0
3131
if nargin > 0
3232
rv = v;

0 commit comments

Comments
 (0)