Skip to content

Commit 70b51a8

Browse files
committed
remove alloc_specs["out"]. this field isn't used anywhere in our codebase
1 parent 5873316 commit 70b51a8

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

libensemble/specs.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -243,13 +243,13 @@ class GenSpecs(BaseModel):
243243

244244
num_active_gens: int = 1
245245
"""
246-
Maximum number of persistent generators to start. Default: 1.
246+
Maximum number of persistent generators to start.
247247
Only used if using the ``only_persistent_gens`` allocation function (the default).
248248
"""
249249

250250
async_return: bool = False
251251
"""
252-
Return results to generator as they come in (after sample). Default: False (batch return).
252+
Return results to generator as they come in (after sample). Default of False implies batch return.
253253
Only used if using the ``only_persistent_gens`` allocation function (the default).
254254
"""
255255

@@ -342,13 +342,6 @@ class AllocSpecs(BaseModel):
342342
As of libEnsemble v2.0, generator-specific allocation options (e.g., ``async_return``,
343343
``num_active_gens``) have been moved to :class:`GenSpecs<libensemble.specs.GenSpecs>`.
344344
"""
345-
346-
outputs: list[tuple] = Field([], alias="out")
347-
"""
348-
list of 2- or 3-tuples corresponding to NumPy dtypes. e.g. ``("dim", int, (3,))``, or ``("path", str)``.
349-
Allocation functions that modify libEnsemble's History array with additional fields should list those
350-
fields here. Also used to construct libEnsemble's history array.
351-
"""
352345
# end_alloc_tag
353346

354347

0 commit comments

Comments
 (0)