Skip to content

Commit

Permalink
undo some unneeded changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnav committed Sep 27, 2024
1 parent 5228711 commit 1ef5898
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libensemble/gen_classes/aposmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(
("local_min", bool),
("local_pt", bool),
]
gen_specs["persis_in"] = ["x", "x_on_cube", "f", "local_pt", "sim_id", "sim_ended", "local_min"]
gen_specs["persis_in"] = ["x", "f", "local_pt", "sim_id", "sim_ended", "x_on_cube", "local_min"]
if not persis_info:
persis_info = add_unique_random_streams({}, 2, seed=4321)[1]
super().__init__(History, persis_info, gen_specs, libE_info, **kwargs)
Expand Down
2 changes: 1 addition & 1 deletion libensemble/generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def final_tell(self, results):
"""

@abstractmethod
def __init__(self, variables: dict[str, List[float]], objectives: dict[str, str], *args, **kwargs):
def __init__(self, *args, **kwargs):
"""
Initialize the Generator object on the user-side. Constants, class-attributes,
and preparation goes here.
Expand Down

0 comments on commit 1ef5898

Please sign in to comment.