From 71f5a2f08529ccfd838f0185cd9fc62d3949be7a Mon Sep 17 00:00:00 2001 From: Tobias Schmidt Date: Fri, 19 Jan 2024 21:58:28 +0100 Subject: [PATCH] print three decimal places for query runtimes --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 3770e1305..57db18f74 100644 --- a/index.html +++ b/index.html @@ -991,7 +991,7 @@

Detailed Comparison

const ratio = curr_timing !== null ? (constant_time_add + curr_timing) / (constant_time_add + baseline_timing) : null; let td = document.createElement('td'); - td.appendChild(document.createTextNode(curr_timing !== null ? `${curr_timing.toFixed(2)}s (×${ratio.toFixed(2)})` : '☠')); + td.appendChild(document.createTextNode(curr_timing !== null ? `${curr_timing.toFixed(3)}s (×${ratio.toFixed(2)})` : '☠')); colorize(td, ratio); tr.appendChild(td);