Skip to content
Draft
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
9 changes: 9 additions & 0 deletions .github/workflows/test_pr_and_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,14 @@ jobs:
run: |
coverage run $COV_ARGS -m pytest mpisppy/tests/test_feasible_xhat.py -v

- name: Test jensens
run: |
coverage run $COV_ARGS -m pytest mpisppy/tests/test_jensens.py -v

- name: Test vss
run: |
coverage run $COV_ARGS -m pytest mpisppy/tests/test_vss.py -v

- name: Test prox_approx end-to-end
run: |
coverage run $COV_ARGS -m pytest mpisppy/tests/test_prox_approx_e2e.py -v
Expand Down Expand Up @@ -1192,6 +1200,7 @@ jobs:
mpisppy/tests/test_solver_spec.py \
mpisppy/tests/test_extensions.py \
mpisppy/tests/test_jensens.py \
mpisppy/tests/test_vss.py \
mpisppy/tests/test_feasible_xhat.py \
mpisppy/tests/test_proper_bundler.py \
mpisppy/tests/test_incumbent_writing.py \
Expand Down
3 changes: 3 additions & 0 deletions doc/designs/pysp_but_not_mpisppy.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ dual-bound extension itself is not reproduced.
computes the VSS / evaluates the expected-value solution across scenarios.
mpi-sppy has `average_scenario_creator` (an EV building block) but no dedicated
VSS/EEV computation utility.
**Addressed (two-stage):** `generic_cylinders --vss` now reports RP/EV/EEV/VSS
after a run (`mpisppy/generic/vss.py`; see `doc/src/vss.rst` and
`doc/designs/vss_design.md`). Multistage VSS is still a gap.

## B. PH algorithmic knobs that are missing

Expand Down
Loading
Loading