Commit 0906d9e9 authored by Hakan Kuecuekyilmaz's avatar Hakan Kuecuekyilmaz

Use three digits after the decimal point for better resolution and comparability of results.

parent fde525de
...@@ -512,7 +512,7 @@ sub print_value ...@@ -512,7 +512,7 @@ sub print_value
else else
{ {
$first=1 if ($first == 0); # Assume that it took one second instead of 0 $first=1 if ($first == 0); # Assume that it took one second instead of 0
$tmp= sprintf("%.2f",$value/$first); $tmp= sprintf("%.3f",$value/$first);
} }
if (defined($flags)) if (defined($flags))
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment