Skip to content

Commit a8b07b6

Browse files
committed
Update for major MP-Opt-Model refactor to use new mp.set_manager and subclasses.
1 parent 8de52c5 commit a8b07b6

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ For change history for [MOST][3], see [most/CHANGES.md](most/CHANGES.md).
1313
since 8.0
1414
---------
1515

16+
#### 8/30/24
17+
- Incorporate major [MP-Opt-Model][27] refactor of `mp_idx_manager` and
18+
`opt_model` to use the new classes `mp.set_manager`,
19+
`mp_set_manager_opt_model`, and their subclasses. See
20+
[mp-opt-model/CHANGES.md](mp-opt-model/CHANGES.md) for details.
21+
1622
#### 6/11/24
1723
- Fix bug where optional `'soln_fname'` input to `run_mp()` (hence also to
1824
`run_pf()`, `run_cpf()`, and `run_opf()`) was being ignored.

docs/sphinx/source/conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@
173173
# matlab_auto_link = "basic"
174174
matlab_auto_link = "all"
175175
matlab_show_property_default_value = True
176+
matlab_show_property_specs = True
176177
# autoclass_content = 'both' # 'class', 'init', 'both'
177178
autodoc_member_order = 'bysource' # 'alphabetical', 'groupwise', 'bysource'
178179
napoleon_use_param = False

docs/src/MATPOWER-manual/MATPOWER-manual.tex

+2-1
Original file line numberDiff line numberDiff line change
@@ -8678,6 +8678,7 @@ \subsubsection*{New Documentation}
86788678

86798679
\subsubsection*{Other Improvements}
86808680
\begin{itemize}
8681+
\item Major \mpomlink{} refactor of \code{mp\_idx\_manager} and \code{opt\_model} to use the new classes \code{mp.set\_manager}, \code{mp\_set\_manager\_opt\_model}, and their subclasses. See \code{mp-opt-model/CHANGES.md} for details.
86818682
\item Add shunt loss columns (\code{psh\_fr}, \code{qsh\_fr}, \code{psh\_to}, \code{qsh\_to}) to branch data model. In pretty-printed output, separate branch loss summary into series and shunt losses and add series loss columns to branch detail output.
86828683
\emph{Thanks to Wilson Gonz\'alez Vanegas.}
86838684
\item Deprecated functions:
@@ -8689,7 +8690,7 @@ \subsubsection*{Other Improvements}
86898690
% \pagebreak
86908691
\subsubsection*{Bugs Fixed}
86918692
\begin{itemize}
8692-
\item Optional \codeq{soln\_fname} input to \code{run\_mp()} (hence also to \code{run\_pf()}, \code{run\_cpf()}, and \code{run\_opf()} was being ignored.
8693+
\item Optional \codeq{soln\_fname} input to \code{run\_mp()}, hence also to \code{run\_pf()}, \code{run\_cpf()}, and \code{run\_opf()}, was being ignored.
86938694

86948695
\end{itemize}
86958696

lib/mpver.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
v{1} = struct( 'Name', 'MATPOWER', ...
3737
'Version', '8.0.1-dev', ...
3838
'Release', '', ...
39-
'Date', '11-Jun-2024' );
39+
'Date', '30-Aug-2024' );
4040
if nargout > 0
4141
if nargin > 0
4242
rv = v{1};

0 commit comments

Comments
 (0)