Skip to content
Open
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
3 changes: 0 additions & 3 deletions docs/data_structures/libE_specs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,6 @@ libEnsemble is primarily customized by setting options within a ``LibeSpecs`` in
**use_persis_return_gen** [bool] = ``False``:
Adds persistent generator output fields to the History array on return.

**use_persis_return_sim** [bool] = ``False``:
Adds persistent simulator output fields to the History array on return.

**final_gen_send** [bool] = ``False``:
Send final simulation results to persistent generators before shutdown.
The results will be sent along with the ``PERSIS_STOP`` tag.
Expand Down
2 changes: 0 additions & 2 deletions libensemble/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,6 @@ def _update_state_on_worker_msg(self, persis_info: dict, D_recv: dict, w: int) -
if calc_status is FINISHED_PERSISTENT_GEN_TAG and self.libE_specs.get("use_persis_return_gen", False):
self._ensure_sim_id_in_persis_in(final_data)
self.hist.update_history_x_in(w, final_data, self.W[w]["gen_started_time"])
elif calc_status is FINISHED_PERSISTENT_SIM_TAG and self.libE_specs.get("use_persis_return_sim", False):
self.hist.update_history_f(D_recv, self.kill_canceled_sims)
else:
logger.info(_PERSIS_RETURN_WARNING)
self.W[w]["persis_state"] = 0
Expand Down
3 changes: 0 additions & 3 deletions libensemble/specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,9 +601,6 @@ class LibeSpecs(BaseModel):
use_persis_return_gen: bool | None = False
""" Adds persistent generator output fields to the History array on return. """

use_persis_return_sim: bool | None = False
""" Adds persistent simulator output fields to the History array on return. """

final_gen_send: bool | None = False
"""
Send final simulation results to persistent generators before shutdown.
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion libensemble/tools/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
+ "not currently added to the manager's history to avoid possibly overwriting, but\n"
+ "will be added to the manager's history in a future release. If you want to\n"
+ "overwrite/append, you can set the libE_specs option ``use_persis_return_gen``\n"
+ "or ``use_persis_return_sim``"
"\n" + 79 * "*" + "\n\n"
)

Expand Down
Loading