Skip to content

Commit f87eb4e

Browse files
committed
print three decimal places for query runtimes
1 parent 2b27a62 commit f87eb4e

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
@@ -988,7 +988,7 @@ <h2>Detailed Comparison</h2>
988988
const ratio = curr_timing !== null ? (constant_time_add + curr_timing) / (constant_time_add + baseline_timing) : null;
989989

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

993993
colorize(td, ratio);
994994
tr.appendChild(td);

0 commit comments

Comments
 (0)