Skip to content

Commit 33223fe

Browse files
committed
print three decimal places for query runtimes
1 parent ffcd337 commit 33223fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ <h2>Detailed Comparison</h2>
993993
const ratio = curr_timing !== null ? (constant_time_add + curr_timing) / (constant_time_add + baseline_timing) : null;
994994

995995
let td = document.createElement('td');
996-
td.appendChild(document.createTextNode(curr_timing !== null ? `${curr_timing.toFixed(2)}s (×${ratio.toFixed(2)})` : '☠'));
996+
td.appendChild(document.createTextNode(curr_timing !== null ? `${curr_timing.toFixed(3)}s (×${ratio.toFixed(2)})` : '☠'));
997997

998998
colorize(td, ratio);
999999
tr.appendChild(td);

0 commit comments

Comments
 (0)