Skip to content

Commit

Permalink
Fix failing test.
Browse files Browse the repository at this point in the history
- t_most_w_ds was failing on MATLAB Linux runner.
- Update date
- Update MATPOWER publish date in citations in manual.
  • Loading branch information
rdzman committed May 30, 2023
1 parent 1f6211e commit d1411fa
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ Change history for MOST
=======================


since 1.2
---------

#### 2/3/23
- Remove extra column in ExpectedRampCost and ignore for single period.


Version 1.2 - *Dec 13, 2022*
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/src/MOST-manual/MOST-manual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3463,12 +3463,12 @@ \subsubsection*{Incompatible Changes}
\doi{10.1109/TPWRS.2010.2051168}

\bibitem{matpower}
R.~D. Zimmerman, C.~E. Murillo-S{\'a}nchez (2020). \matpower{}\\~
R.~D. Zimmerman, C.~E. Murillo-S{\'a}nchez (2022). \matpower{}\\~
[Software]. Available: \url{https://matpower.org}\\
\doi{10.5281/zenodo.3236535}

\bibitem{matpower_manual}
R.~D. Zimmerman, C.~E. Murillo-S{\'a}nchez. \matpower{} User's Manual. 2020.\\~
R.~D. Zimmerman, C.~E. Murillo-S{\'a}nchez. \matpower{} User's Manual. 2022.\\~
[Online]. Available: \url{https://matpower.org/docs/MATPOWER-manual.pdf}\\
\doi{10.5281/zenodo.3236519}

Expand Down
6 changes: 3 additions & 3 deletions lib/mostver.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
% See also MPVER.

% MOST
% Copyright (c) 2010-2022, Power Systems Engineering Research Center (PSERC)
% Copyright (c) 2010-2023, Power Systems Engineering Research Center (PSERC)
% by Ray Zimmerman, PSERC Cornell
%
% This file is part of MOST.
% Covered by the 3-clause BSD License (see LICENSE file for details).
% See https://github.com/MATPOWER/most for more info.

v = struct( 'Name', 'MOST', ...
'Version', '1.2', ...
'Version', '1.2+', ...
'Release', '', ...
'Date', '13-Dec-2022' );
'Date', '30-May-2023' );
if nargout > 0
if nargin > 0
rv = v;
Expand Down
2 changes: 1 addition & 1 deletion lib/t/t_most_w_ds.m
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function t_most_w_ds(quiet, solver, verbose)
mpopt = mpoption(mpopt, 'gurobi.opts.OptimalityTol', 1e-5); %% 1e-6
end
if have_feature('quadprog_ls')
mpopt = mpoption(mpopt, 'quadprog.TolFun', 1e-13);
mpopt = mpoption(mpopt, 'quadprog.TolFun', 1e-12);
end
if have_feature('mosek')
mpopt = mpoption(mpopt, 'mosek.num_threads', 2);
Expand Down

0 comments on commit d1411fa

Please sign in to comment.