From ea2a19a343fbc3ce2e882eef444845ca9c65a737 Mon Sep 17 00:00:00 2001 From: Sooyoung Cheong <64125280+c-sooyoung@users.noreply.github.com> Date: Fri, 10 Jul 2026 22:44:59 +0900 Subject: [PATCH] renamed --- bo-ptycho.py => bo_ptycho.py | 5 ----- 1 file changed, 5 deletions(-) rename bo-ptycho.py => bo_ptycho.py (99%) diff --git a/bo-ptycho.py b/bo_ptycho.py similarity index 99% rename from bo-ptycho.py rename to bo_ptycho.py index 879caf4..d1555e3 100644 --- a/bo-ptycho.py +++ b/bo_ptycho.py @@ -12,7 +12,6 @@ def ptycho_run(config): # Add more ptycho engines here as needed # write their respective run functions and import them above - def ptycho_error(config): ptycho_engine = config['ptycho']['engine'] @@ -20,7 +19,6 @@ def ptycho_error(config): from ptycho.fold_slice import error return error(config) - def bo_initialize(config): bo_algorithm = config['bo']['algorithm'] @@ -34,7 +32,6 @@ def bo_initialize(config): return bo_state - def bo_ask(config, bo_state): bo_engine = config['bo']['algorithm'] @@ -51,7 +48,6 @@ def bo_ask(config, bo_state): return next_config - def bo_tell(config, job_config, bo_state, y_value): bo_engine = config['bo']['algorithm'] @@ -65,7 +61,6 @@ def bo_tell(config, job_config, bo_state, y_value): return bo_state - def main(config): bo_state = bo_initialize(config)