Skip to content

Commit

Permalink
clarify new option allows reuse of workflow dir too
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnav committed Aug 1, 2023
1 parent caf9688 commit d2822b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/data_structures/libE_specs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ the ``LibeSpecs`` class. When provided as a Python class, options are validated
location. Useful if ``ensemble_dir_path`` located on node-local storage.

"reuse_output_dir" [bool] = ``False``:
Whether to allow overwrites and access to previous ensemble directories in subsequent runs. ``False``
by default to protect results.
Whether to allow overwrites and access to previous ensemble and workflow directories in subsequent runs.
``False`` by default to protect results.

"use_worker_dirs" [bool] = ``False``:
Whether to organize calculation directories under worker-specific directories:
Expand Down
4 changes: 2 additions & 2 deletions libensemble/specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ class LibeSpecs(BaseModel):

reuse_output_dir: Optional[bool] = False
"""
Whether to allow overwrites and access to previous ensemble directories in subsequent runs. ``False``
by default to protect results.
Whether to allow overwrites and access to previous ensemble and workflow directories in subsequent runs.
``False`` by default to protect results.
"""

workflow_dir_path: Optional[Union[str, Path]] = "."
Expand Down

0 comments on commit d2822b2

Please sign in to comment.