From 91b167992a426c05604cc40215bc8a5baa227332 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Thu, 4 May 2023 15:05:10 -0700 Subject: [PATCH] include `run_anyway` in output --- go_benchmark_it.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go_benchmark_it.py b/go_benchmark_it.py index 85c49cf..d7ebff9 100644 --- a/go_benchmark_it.py +++ b/go_benchmark_it.py @@ -323,7 +323,7 @@ if __name__ == "__main__": s = "s" if before - after != 1 else "" print(f"Pruned {before - after} unwanted optimizer{s}.") - ms = f" ({multiple} times)" if multiple != 1 else "" + ms = f" ({multiple}+{run_anyway-multiple} times)" if multiple != 1 else "" n_obj = len(objectives) n_opt = len(optimizers) print(f"Optimizing {n_obj} objectives{ms} with {n_opt} optimizers...")