Skip to content

Commit ea1d255

Browse files
committed
Removing old options/imports
1 parent 8ff42c3 commit ea1d255

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

libensemble/tests/regression_tests/run_botorch_mfkg_branin.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,11 @@
2727
from libensemble.gen_funcs.persistent_botorch_mfkg_branin import persistent_botorch_mfkg
2828
from libensemble.libE import libE
2929
from libensemble.sim_funcs.augmented_branin import augmented_branin
30-
from libensemble.tools import add_unique_random_streams, parse_args, save_libE_output
30+
from libensemble.tools import parse_args, save_libE_output
3131

3232
# Main block is necessary only when using local comms with spawn start method (default on macOS and Windows).
3333
if __name__ == "__main__":
3434
nworkers, is_manager, libE_specs, _ = parse_args()
35-
libE_specs["gen_on_manager"] = True
3635

3736
sim_specs = {
3837
"sim_f": augmented_branin,
@@ -68,7 +67,7 @@
6867
exit_criteria = {"sim_max": 12} # Exit after running sim_max simulations
6968

7069
# Create a different random number stream for each worker and the manager
71-
persis_info = add_unique_random_streams({}, nworkers + 1)
70+
persis_info = {}
7271

7372
# Run LibEnsemble, and store results in history array H
7473
H, persis_info, flag = libE(sim_specs, gen_specs, exit_criteria, persis_info, alloc_specs, libE_specs)

0 commit comments

Comments
 (0)