From 0fc3ac6f16b0bf87719fb96c87e7f177d425eb7b Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Thu, 28 Jul 2022 21:33:42 +0000 Subject: [PATCH] fix: don't return 0 on JB fail --- benchmarks/dis/analysis/dis_electrons.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/dis/analysis/dis_electrons.cxx b/benchmarks/dis/analysis/dis_electrons.cxx index 25b775e9..4e22a593 100644 --- a/benchmarks/dis/analysis/dis_electrons.cxx +++ b/benchmarks/dis/analysis/dis_electrons.cxx @@ -180,7 +180,7 @@ int dis_electrons(const std::string& config_name) f_Q2_jb_res->Parameter(1), f_Q2_jb_res->Error(1));Q2 } else { fmt::print("Q2 JB fit failed (FIXME: allowed to fail)"); - return 0; //FIXME 1; + //return 1; } if (f_Q2_da_res == 0) { fmt::print(" - DA: {} +/- {}\n", @@ -216,7 +216,7 @@ int dis_electrons(const std::string& config_name) f_x_jb_res->Parameter(1), f_x_jb_res->Error(1)); } else { fmt::print("x JB fit failed (FIXME: allowed to fail)"); - return 0; //FIXME 1; + //return 1; } if (f_x_da_res == 0) { fmt::print(" - DA: {} +/- {}\n", -- GitLab