Index: bench/gen_bench_expectations.py |
diff --git a/bench/gen_bench_expectations.py b/bench/gen_bench_expectations.py |
index 6a5ee1e371f55557c53252062e099b669e669d01..4b01f2404dfe149a94ca00789868cd87967ba231 100644 |
--- a/bench/gen_bench_expectations.py |
+++ b/bench/gen_bench_expectations.py |
@@ -44,8 +44,8 @@ def compute_ranges(benches): |
diff = maximum - minimum |
avg = sum(benches) / len(benches) |
- return [minimum - diff * RANGE_RATIO_LOWER - avg * ERR_RATIO - ERR_UB, |
- maximum + diff * RANGE_RATIO_UPPER + avg * ERR_RATIO + ERR_LB] |
+ return [minimum - diff * RANGE_RATIO_LOWER - avg * ERR_RATIO - ERR_LB, |
+ maximum + diff * RANGE_RATIO_UPPER + avg * ERR_RATIO + ERR_UB] |
def create_expectations_dict(revision_data_points): |