-
Source code for aepsych.strategy
+
+
+
+
+
+
Source code for aepsych.strategy
+
+
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
@@ -560,7 +563,7 @@ Source code for aepsych.strategy
if self.is_finished:
return True
- self.strat._maybe_move_to_next_step()
+ self.strat._maybe_transition_to_next_node()
return len(self.strat._steps) == (self.strat.current_step.index + 1)
@@ -661,52 +664,72 @@ Source code for aepsych.strategy
[docs] def get_pareto_optimal_parameters(self):
return self.ax_client.get_pareto_optimal_parameters()
-
-
-
-
-
+
+
+
+
+
+