Fix decimal marks

This commit is contained in:
Antti H S Laaksonen 2017-05-17 23:32:48 +03:00
parent dacd939a4d
commit 69941cb3a1
2 changed files with 11 additions and 11 deletions

View File

@ -514,12 +514,12 @@ measured.
\begin{tabular}{rrrr} \begin{tabular}{rrrr}
array size $n$ & Algorithm 1 & Algorithm 2 & Algorithm 3 \\ array size $n$ & Algorithm 1 & Algorithm 2 & Algorithm 3 \\
\hline \hline
$10^2$ & $0{,}0$ s & $0{,}0$ s & $0{,}0$ s \\ $10^2$ & $0.0$ s & $0.0$ s & $0.0$ s \\
$10^3$ & $0{,}1$ s & $0{,}0$ s & $0{,}0$ s \\ $10^3$ & $0.1$ s & $0.0$ s & $0.0$ s \\
$10^4$ & > $10,0$ s & $0{,}1$ s & $0{,}0$ s \\ $10^4$ & > $10.0$ s & $0.1$ s & $0.0$ s \\
$10^5$ & > $10,0$ s & $5{,}3$ s & $0{,}0$ s \\ $10^5$ & > $10.0$ s & $5.3$ s & $0.0$ s \\
$10^6$ & > $10,0$ s & > $10,0$ s & $0{,}0$ s \\ $10^6$ & > $10.0$ s & > $10.0$ s & $0.0$ s \\
$10^7$ & > $10,0$ s & > $10,0$ s & $0{,}0$ s \\ $10^7$ & > $10.0$ s & > $10.0$ s & $0.0$ s \\
\end{tabular} \end{tabular}
\end{center} \end{center}

View File

@ -765,11 +765,11 @@ integers between $1 \ldots 10^9$:
\begin{tabular}{rrrr} \begin{tabular}{rrrr}
$n$ & Algorithm 1 & Algorithm 2 & Algorithm 3 \\ $n$ & Algorithm 1 & Algorithm 2 & Algorithm 3 \\
\hline \hline
$10^6$ & $1{,}5$ s & $0{,}3$ s & $0{,}2$ s \\ $10^6$ & $1.5$ s & $0.3$ s & $0.2$ s \\
$2 \cdot 10^6$ & $3{,}7$ s & $0{,}8$ s & $0{,}3$ s \\ $2 \cdot 10^6$ & $3.7$ s & $0.8$ s & $0.3$ s \\
$3 \cdot 10^6$ & $5{,}7$ s & $1{,}3$ s & $0{,}5$ s \\ $3 \cdot 10^6$ & $5.7$ s & $1.3$ s & $0.5$ s \\
$4 \cdot 10^6$ & $7{,}7$ s & $1{,}7$ s & $0{,}7$ s \\ $4 \cdot 10^6$ & $7.7$ s & $1.7$ s & $0.7$ s \\
$5 \cdot 10^6$ & $10{,}0$ s & $2{,}3$ s & $0{,}9$ s \\ $5 \cdot 10^6$ & $10.0$ s & $2.3$ s & $0.9$ s \\
\end{tabular} \end{tabular}
\end{center} \end{center}