3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Setup $count = 1000; function camelcaseCurrent($file) { $r1 = ucwords(str_replace(array('_', '-', '/'), ' ', $file)); $r2 = str_replace(' ', '', $r1); return $r2; } function camelcaseNew($file) { $r1 = ucwords(str_replace(array('_', '-', '/'), '', $file)); $r2 = str_replace(' ', '', $r1); return $r2; } // Warm up for($i = 0; $i < $count; $i++) { camelcaseCurrent('asset_library'); camelcaseNew('asset_library'); } // Test - current $t0 = microtime(true); for($i = 0; $i < $count; $i++) { camelcaseCurrent('asset_library'); } $deltaCurrent = microtime(true) - $t0; // Test - new $t0 = microtime(true); for($i = 0; $i < $count; $i++) { camelcaseNew('asset_library'); } $deltaNew = microtime(true) - $t0; echo "case current: ", round($deltaCurrent * 1000, 2), " ms\n"; echo "case new: ", round($deltaNew * 1000, 2), " ms\n"; echo "new gain: ", round($deltaNew * 100 / $deltaCurrent - 100, 2), " %\n";
Output for 7.4.0
case current: 0.73 ms case new: 0.63 ms new gain: -14.57 %
Output for 7.3.12
case current: 0.72 ms case new: 0.63 ms new gain: -12.04 %
Output for 7.3.11
case current: 0.75 ms case new: 0.6 ms new gain: -20.61 %
Output for 7.3.10
case current: 0.59 ms case new: 0.49 ms new gain: -18.01 %
Output for 7.3.9
case current: 0.53 ms case new: 0.45 ms new gain: -15.61 %
Output for 7.3.8
case current: 0.47 ms case new: 0.4 ms new gain: -14.68 %
Output for 7.3.7
case current: 0.53 ms case new: 0.48 ms new gain: -8.52 %
Output for 7.3.6
case current: 0.51 ms case new: 0.43 ms new gain: -14.58 %
Output for 7.3.5
case current: 0.5 ms case new: 0.42 ms new gain: -16.47 %
Output for 7.3.4
case current: 0.5 ms case new: 0.43 ms new gain: -14.56 %
Output for 7.3.3
case current: 1.04 ms case new: 0.87 ms new gain: -16.79 %
Output for 7.3.2
case current: 0.55 ms case new: 0.44 ms new gain: -19.96 %
Output for 7.3.1
case current: 0.5 ms case new: 0.43 ms new gain: -13.7 %
Output for 7.3.0
case current: 0.75 ms case new: 0.61 ms new gain: -18.74 %
Output for 7.2.25
case current: 0.73 ms case new: 0.66 ms new gain: -9.9 %
Output for 7.2.24
case current: 0.79 ms case new: 0.7 ms new gain: -11.5 %
Output for 7.2.23
case current: 0.54 ms case new: 0.46 ms new gain: -14.97 %
Output for 7.2.22
case current: 0.67 ms case new: 0.57 ms new gain: -15.32 %
Output for 7.2.21
case current: 0.57 ms case new: 0.51 ms new gain: -10.93 %
Output for 7.2.20
case current: 0.66 ms case new: 0.54 ms new gain: -19.16 %
Output for 7.2.19
case current: 0.52 ms case new: 0.46 ms new gain: -11.95 %
Output for 7.2.18
case current: 0.54 ms case new: 0.46 ms new gain: -15.4 %
Output for 7.2.17
case current: 0.93 ms case new: 0.81 ms new gain: -11.91 %
Output for 7.2.16
case current: 0.73 ms case new: 0.66 ms new gain: -9.25 %
Output for 7.2.15
case current: 0.67 ms case new: 0.57 ms new gain: -14.4 %
Output for 7.2.14
case current: 0.53 ms case new: 0.46 ms new gain: -13.33 %
Output for 7.2.13
case current: 0.93 ms case new: 0.79 ms new gain: -15.67 %
Output for 7.2.12
case current: 0.5 ms case new: 0.44 ms new gain: -12.45 %
Output for 7.2.11
case current: 0.78 ms case new: 0.69 ms new gain: -10.7 %
Output for 7.2.10
case current: 0.6 ms case new: 0.48 ms new gain: -19.25 %
Output for 7.2.9
case current: 0.64 ms case new: 0.58 ms new gain: -9.55 %
Output for 7.2.8
case current: 0.74 ms case new: 0.67 ms new gain: -9.44 %
Output for 7.2.7
case current: 0.53 ms case new: 0.45 ms new gain: -14.22 %
Output for 7.2.6
case current: 0.53 ms case new: 0.45 ms new gain: -14.98 %
Output for 7.2.5
case current: 0.77 ms case new: 0.48 ms new gain: -37.49 %
Output for 7.2.4
case current: 0.58 ms case new: 0.52 ms new gain: -10.37 %
Output for 7.2.3
case current: 0.52 ms case new: 0.46 ms new gain: -11.04 %
Output for 7.2.2
case current: 0.51 ms case new: 0.47 ms new gain: -9.68 %
Output for 7.2.1
case current: 0.55 ms case new: 0.47 ms new gain: -14.37 %
Output for 7.2.0
case current: 0.53 ms case new: 0.47 ms new gain: -12.37 %
Output for 7.1.33
case current: 0.84 ms case new: 0.76 ms new gain: -10.12 %
Output for 7.1.32
case current: 0.61 ms case new: 0.53 ms new gain: -12.49 %
Output for 7.1.31
case current: 0.6 ms case new: 0.55 ms new gain: -8.48 %
Output for 7.1.30
case current: 0.7 ms case new: 0.58 ms new gain: -17.37 %
Output for 7.1.29
case current: 0.6 ms case new: 0.53 ms new gain: -12.27 %
Output for 7.1.28
case current: 0.66 ms case new: 0.61 ms new gain: -6.54 %
Output for 7.1.27
case current: 0.67 ms case new: 0.59 ms new gain: -11.23 %
Output for 7.1.26
case current: 1.09 ms case new: 1.16 ms new gain: 7.36 %
Output for 7.1.25
case current: 0.95 ms case new: 0.83 ms new gain: -12.48 %
Output for 7.1.24
case current: 0.62 ms case new: 0.53 ms new gain: -15.68 %
Output for 7.1.23
case current: 0.7 ms case new: 0.61 ms new gain: -13.29 %
Output for 7.1.22
case current: 0.88 ms case new: 0.77 ms new gain: -12.64 %
Output for 7.1.21
case current: 0.6 ms case new: 0.53 ms new gain: -12.63 %
Output for 7.1.20
case current: 0.61 ms case new: 0.52 ms new gain: -14.07 %
Output for 7.1.19
case current: 0.64 ms case new: 0.56 ms new gain: -12.5 %
Output for 7.1.18
case current: 0.61 ms case new: 0.53 ms new gain: -12.78 %
Output for 7.1.17
case current: 1.27 ms case new: 0.85 ms new gain: -33.53 %
Output for 7.1.16
case current: 0.92 ms case new: 0.79 ms new gain: -14.19 %
Output for 7.1.15
case current: 0.77 ms case new: 0.69 ms new gain: -9.94 %
Output for 7.1.14
case current: 0.62 ms case new: 0.54 ms new gain: -11.82 %
Output for 7.1.13
case current: 0.61 ms case new: 0.53 ms new gain: -12.18 %
Output for 7.1.12
case current: 0.61 ms case new: 0.53 ms new gain: -14.11 %
Output for 7.1.11
case current: 0.73 ms case new: 0.64 ms new gain: -11.54 %
Output for 7.1.10
case current: 1.19 ms case new: 1.03 ms new gain: -13.11 %
Output for 7.1.9
case current: 0.61 ms case new: 0.53 ms new gain: -14.27 %
Output for 7.1.8
case current: 0.64 ms case new: 0.54 ms new gain: -16.44 %
Output for 7.1.7
case current: 0.89 ms case new: 0.68 ms new gain: -23.97 %
Output for 7.1.6
case current: 0.6 ms case new: 0.53 ms new gain: -11.59 %
Output for 7.1.5
case current: 0.7 ms case new: 0.62 ms new gain: -12.11 %
Output for 7.1.4
case current: 0.86 ms case new: 0.7 ms new gain: -18.73 %
Output for 7.1.3
case current: 0.67 ms case new: 0.55 ms new gain: -18.57 %
Output for 7.1.2
case current: 1.08 ms case new: 0.95 ms new gain: -11.52 %
Output for 7.1.1
case current: 1.26 ms case new: 1.09 ms new gain: -13.34 %
Output for 7.1.0
case current: 1.25 ms case new: 1.21 ms new gain: -2.81 %
Output for 7.0.33
case current: 0.68 ms case new: 0.61 ms new gain: -10 %
Output for 7.0.32
case current: 1.33 ms case new: 1.37 ms new gain: 3.32 %
Output for 7.0.31
case current: 0.71 ms case new: 0.63 ms new gain: -11.45 %
Output for 7.0.30
case current: 0.69 ms case new: 0.63 ms new gain: -7.86 %
Output for 7.0.29
case current: 1.09 ms case new: 1 ms new gain: -7.64 %
Output for 7.0.28
case current: 1.37 ms case new: 1.22 ms new gain: -11.37 %
Output for 7.0.27
case current: 0.86 ms case new: 0.75 ms new gain: -12.6 %
Output for 7.0.26
case current: 0.69 ms case new: 0.62 ms new gain: -9.74 %
Output for 7.0.25
case current: 1.4 ms case new: 1.29 ms new gain: -8.12 %
Output for 7.0.24
case current: 0.75 ms case new: 0.67 ms new gain: -11.03 %
Output for 7.0.23
case current: 0.72 ms case new: 0.62 ms new gain: -12.85 %
Output for 7.0.22
case current: 0.84 ms case new: 0.77 ms new gain: -8.22 %
Output for 7.0.21
case current: 0.81 ms case new: 0.74 ms new gain: -9.8 %
Output for 7.0.20
case current: 0.92 ms case new: 0.82 ms new gain: -11.17 %
Output for 7.0.19
case current: 0.99 ms case new: 0.95 ms new gain: -3.95 %
Output for 7.0.18
case current: 0.74 ms case new: 0.63 ms new gain: -14.86 %
Output for 7.0.17
case current: 1 ms case new: 0.95 ms new gain: -4.8 %
Output for 7.0.16
case current: 0.7 ms case new: 0.67 ms new gain: -5.25 %
Output for 7.0.15
case current: 0.67 ms case new: 0.61 ms new gain: -9.54 %
Output for 7.0.14
case current: 0.7 ms case new: 0.63 ms new gain: -9.76 %
Output for 7.0.13
case current: 0.68 ms case new: 0.62 ms new gain: -8.1 %
Output for 7.0.12
case current: 0.79 ms case new: 0.68 ms new gain: -13.56 %
Output for 7.0.11
case current: 0.78 ms case new: 0.68 ms new gain: -12.87 %
Output for 7.0.10
case current: 0.88 ms case new: 0.8 ms new gain: -8.86 %
Output for 7.0.9
case current: 0.95 ms case new: 0.89 ms new gain: -6.83 %
Output for 7.0.8
case current: 0.69 ms case new: 0.62 ms new gain: -11.23 %
Output for 7.0.7
case current: 1.33 ms case new: 1.2 ms new gain: -9.72 %
Output for 7.0.6
case current: 1.01 ms case new: 0.93 ms new gain: -8.49 %
Output for 7.0.5
case current: 0.69 ms case new: 0.63 ms new gain: -9.52 %
Output for 7.0.4
case current: 0.74 ms case new: 0.62 ms new gain: -16.95 %
Output for 7.0.3
case current: 1.55 ms case new: 1.08 ms new gain: -30.07 %
Output for 7.0.2
case current: 0.69 ms case new: 0.64 ms new gain: -7.13 %
Output for 7.0.1
case current: 0.82 ms case new: 0.62 ms new gain: -24.22 %
Output for 7.0.0
case current: 0.69 ms case new: 0.62 ms new gain: -9.86 %
Output for 5.6.40
case current: 1.66 ms case new: 1.61 ms new gain: -2.99 %
Output for 5.6.39
case current: 1.62 ms case new: 1.55 ms new gain: -4.46 %
Output for 5.6.38
case current: 1.47 ms case new: 1.41 ms new gain: -3.61 %
Output for 5.6.37
case current: 2.18 ms case new: 1.91 ms new gain: -12.32 %
Output for 5.6.36
case current: 2.44 ms case new: 1.79 ms new gain: -26.76 %
Output for 5.6.35
case current: 1.48 ms case new: 1.42 ms new gain: -4.13 %
Output for 5.6.34
case current: 1.49 ms case new: 1.41 ms new gain: -5.5 %
Output for 5.6.33
case current: 1.68 ms case new: 1.64 ms new gain: -2.33 %
Output for 5.6.32
case current: 2.25 ms case new: 2.09 ms new gain: -7.02 %
Output for 5.6.31
case current: 2.41 ms case new: 1.41 ms new gain: -41.45 %
Output for 5.6.30
case current: 1.69 ms case new: 1.41 ms new gain: -16.47 %
Output for 5.6.29
case current: 1.49 ms case new: 1.41 ms new gain: -5.1 %
Output for 5.6.28
case current: 1.48 ms case new: 1.41 ms new gain: -4.73 %
Output for 5.6.27
case current: 1.54 ms case new: 1.45 ms new gain: -5.79 %
Output for 5.6.26
case current: 1.5 ms case new: 1.44 ms new gain: -3.8 %
Output for 5.6.25
case current: 1.82 ms case new: 1.75 ms new gain: -3.77 %
Output for 5.6.24
case current: 1.47 ms case new: 1.41 ms new gain: -4.36 %
Output for 5.6.23
case current: 1.82 ms case new: 1.76 ms new gain: -3.62 %
Output for 5.6.22
case current: 1.62 ms case new: 1.6 ms new gain: -1.66 %
Output for 5.6.21
case current: 1.51 ms case new: 1.42 ms new gain: -5.71 %
Output for 5.6.20
case current: 1.65 ms case new: 1.6 ms new gain: -3.33 %
Output for 5.6.19
case current: 1.77 ms case new: 1.42 ms new gain: -19.67 %
Output for 5.6.18
case current: 1.48 ms case new: 1.43 ms new gain: -3.2 %
Output for 5.6.17
case current: 2.43 ms case new: 1.73 ms new gain: -28.85 %
Output for 5.6.16
case current: 2.47 ms case new: 1.49 ms new gain: -39.62 %
Output for 5.6.15
case current: 2.05 ms case new: 1.42 ms new gain: -30.86 %
Output for 5.6.14
case current: 2.27 ms case new: 2.04 ms new gain: -9.93 %
Output for 5.6.13
case current: 1.69 ms case new: 1.62 ms new gain: -4.27 %
Output for 5.6.12
case current: 1.48 ms case new: 1.42 ms new gain: -4.2 %
Output for 5.6.11
case current: 1.52 ms case new: 1.43 ms new gain: -6.17 %
Output for 5.6.10
case current: 1.5 ms case new: 1.41 ms new gain: -6.19 %
Output for 5.6.9
case current: 1.65 ms case new: 1.53 ms new gain: -6.75 %
Output for 5.6.8
case current: 1.61 ms case new: 1.64 ms new gain: 1.61 %
Output for 5.6.7
case current: 1.45 ms case new: 1.41 ms new gain: -2.68 %
Output for 5.6.6
case current: 1.48 ms case new: 1.4 ms new gain: -4.88 %
Output for 5.6.5
case current: 1.92 ms case new: 1.84 ms new gain: -4.42 %
Output for 5.6.4
case current: 2.02 ms case new: 1.96 ms new gain: -2.88 %
Output for 5.6.3
case current: 1.48 ms case new: 1.44 ms new gain: -2.72 %
Output for 5.6.2
case current: 1.47 ms case new: 1.4 ms new gain: -4.63 %
Output for 5.6.1
case current: 1.49 ms case new: 1.44 ms new gain: -3.76 %
Output for 5.6.0
case current: 2.12 ms case new: 2.05 ms new gain: -3.02 %
Output for 5.5.38
case current: 1.5 ms case new: 1.44 ms new gain: -4 %
Output for 5.5.37
case current: 1.66 ms case new: 1.6 ms new gain: -3.49 %
Output for 5.5.36
case current: 1.53 ms case new: 1.46 ms new gain: -5.2 %
Output for 5.5.35
case current: 1.59 ms case new: 1.5 ms new gain: -5.47 %
Output for 5.5.34
case current: 1.63 ms case new: 1.45 ms new gain: -10.59 %
Output for 5.5.33
case current: 2.19 ms case new: 2.06 ms new gain: -5.87 %
Output for 5.5.32
case current: 2.19 ms case new: 1.91 ms new gain: -12.9 %
Output for 5.5.31
case current: 1.52 ms case new: 1.45 ms new gain: -4.75 %
Output for 5.5.30
case current: 2.92 ms case new: 1.66 ms new gain: -43.17 %
Output for 5.5.29
case current: 1.53 ms case new: 1.46 ms new gain: -4.45 %
Output for 5.5.28
case current: 1.77 ms case new: 1.47 ms new gain: -16.83 %
Output for 5.5.27
case current: 1.52 ms case new: 1.47 ms new gain: -3.66 %
Output for 5.5.26
case current: 1.51 ms case new: 1.45 ms new gain: -4 %
Output for 5.5.25
case current: 1.55 ms case new: 1.45 ms new gain: -6.19 %
Output for 5.5.24
case current: 1.54 ms case new: 1.47 ms new gain: -4.66 %
Output for 5.5.23
case current: 1.51 ms case new: 1.46 ms new gain: -3.38 %
Output for 5.5.22
case current: 1.64 ms case new: 1.53 ms new gain: -6.87 %
Output for 5.5.21
case current: 2.49 ms case new: 1.81 ms new gain: -27.38 %
Output for 5.5.20
case current: 1.52 ms case new: 1.45 ms new gain: -5.05 %
Output for 5.5.19
case current: 1.57 ms case new: 1.48 ms new gain: -5.93 %
Output for 5.5.18
case current: 1.73 ms case new: 1.65 ms new gain: -4.8 %
Output for 5.5.17
case current: 1.81 ms case new: 1.83 ms new gain: 0.88 %
Output for 5.5.16
case current: 1.53 ms case new: 1.46 ms new gain: -4.44 %
Output for 5.5.15
case current: 1.6 ms case new: 1.41 ms new gain: -11.97 %
Output for 5.5.14
case current: 1.51 ms case new: 1.47 ms new gain: -2.66 %
Output for 5.5.13
case current: 1.47 ms case new: 1.44 ms new gain: -2.45 %
Output for 5.5.12
case current: 1.63 ms case new: 1.62 ms new gain: -0.61 %
Output for 5.5.11
case current: 1.52 ms case new: 1.45 ms new gain: -5.06 %
Output for 5.5.10
case current: 1.72 ms case new: 1.7 ms new gain: -1.56 %
Output for 5.5.9
case current: 1.47 ms case new: 1.42 ms new gain: -3.53 %
Output for 5.5.8
case current: 2.06 ms case new: 1.97 ms new gain: -4.17 %
Output for 5.5.7
case current: 1.48 ms case new: 1.41 ms new gain: -4.92 %
Output for 5.5.6
case current: 1.49 ms case new: 1.41 ms new gain: -5.42 %
Output for 5.5.5
case current: 1.57 ms case new: 1.5 ms new gain: -4.4 %
Output for 5.5.4
case current: 1.5 ms case new: 1.45 ms new gain: -3.45 %
Output for 5.5.3
case current: 1.47 ms case new: 1.4 ms new gain: -4.9 %
Output for 5.5.2
case current: 1.48 ms case new: 1.44 ms new gain: -2.77 %
Output for 5.5.1
case current: 2.03 ms case new: 1.42 ms new gain: -30.22 %
Output for 5.5.0
case current: 1.52 ms case new: 1.47 ms new gain: -2.97 %
Output for 5.4.45
case current: 2.24 ms case new: 2.23 ms new gain: -0.45 %
Output for 5.4.44
case current: 1.5 ms case new: 1.47 ms new gain: -2.19 %
Output for 5.4.43
case current: 1.53 ms case new: 1.46 ms new gain: -4.4 %
Output for 5.4.42
case current: 1.53 ms case new: 1.47 ms new gain: -3.8 %
Output for 5.4.41
case current: 1.56 ms case new: 1.46 ms new gain: -6.34 %
Output for 5.4.40
case current: 1.5 ms case new: 1.43 ms new gain: -5.06 %
Output for 5.4.39
case current: 1.83 ms case new: 1.78 ms new gain: -3.01 %
Output for 5.4.38
case current: 2.26 ms case new: 2.18 ms new gain: -3.68 %
Output for 5.4.37
case current: 1.58 ms case new: 1.47 ms new gain: -7.09 %
Output for 5.4.36
case current: 2.51 ms case new: 2.13 ms new gain: -15.37 %
Output for 5.4.35
case current: 2.77 ms case new: 1.53 ms new gain: -44.75 %
Output for 5.4.34
case current: 1.68 ms case new: 1.63 ms new gain: -3.27 %
Output for 5.4.33
case current: 1.49 ms case new: 1.5 ms new gain: 0.8 %
Output for 5.4.32
case current: 2.36 ms case new: 2.31 ms new gain: -1.99 %
Output for 5.4.31
case current: 1.6 ms case new: 1.67 ms new gain: 4.38 %
Output for 5.4.30
case current: 1.63 ms case new: 1.55 ms new gain: -5.01 %
Output for 5.4.29
case current: 1.64 ms case new: 1.54 ms new gain: -6.05 %
Output for 5.4.28
case current: 2.59 ms case new: 2.53 ms new gain: -2.47 %
Output for 5.4.27
case current: 1.56 ms case new: 1.48 ms new gain: -5.18 %
Output for 5.4.26
case current: 1.81 ms case new: 1.62 ms new gain: -10.4 %
Output for 5.4.25
case current: 1.85 ms case new: 1.51 ms new gain: -18.59 %
Output for 5.4.24
case current: 1.67 ms case new: 1.43 ms new gain: -14.36 %
Output for 5.4.23
case current: 2.02 ms case new: 1.93 ms new gain: -4.36 %
Output for 5.4.22
case current: 1.62 ms case new: 1.52 ms new gain: -5.87 %
Output for 5.4.21
case current: 1.54 ms case new: 1.42 ms new gain: -7.94 %
Output for 5.4.20
case current: 1.5 ms case new: 1.45 ms new gain: -3.53 %
Output for 5.4.19
case current: 1.67 ms case new: 1.62 ms new gain: -3.11 %
Output for 5.4.18
case current: 1.94 ms case new: 1.42 ms new gain: -26.69 %
Output for 5.4.17
case current: 1.47 ms case new: 1.4 ms new gain: -5.03 %
Output for 5.4.16
case current: 2.61 ms case new: 2.17 ms new gain: -16.9 %
Output for 5.4.15
case current: 1.45 ms case new: 1.39 ms new gain: -4.59 %
Output for 5.4.14
case current: 1.45 ms case new: 1.45 ms new gain: -0.34 %
Output for 5.4.13
case current: 1.8 ms case new: 1.73 ms new gain: -3.89 %
Output for 5.4.12
case current: 1.49 ms case new: 1.4 ms new gain: -5.52 %
Output for 5.4.11
case current: 1.69 ms case new: 1.64 ms new gain: -3.31 %
Output for 5.4.10
case current: 1.48 ms case new: 1.42 ms new gain: -3.92 %
Output for 5.4.9
case current: 1.48 ms case new: 1.58 ms new gain: 6.84 %
Output for 5.4.8
case current: 1.67 ms case new: 1.61 ms new gain: -3.78 %
Output for 5.4.7
case current: 1.51 ms case new: 1.45 ms new gain: -3.74 %
Output for 5.4.6
case current: 2.36 ms case new: 2.32 ms new gain: -1.78 %
Output for 5.4.5
case current: 1.88 ms case new: 1.79 ms new gain: -4.89 %
Output for 5.4.4
case current: 1.89 ms case new: 1.64 ms new gain: -13.3 %
Output for 5.4.3
case current: 2.55 ms case new: 2.44 ms new gain: -4.27 %
Output for 5.4.2
case current: 1.48 ms case new: 1.42 ms new gain: -3.86 %
Output for 5.4.1
case current: 1.47 ms case new: 1.45 ms new gain: -1.3 %
Output for 5.4.0
case current: 1.46 ms case new: 1.43 ms new gain: -1.99 %
Output for 5.3.29
case current: 2.95 ms case new: 2.03 ms new gain: -31.29 %
Output for 5.3.28
case current: 1.92 ms case new: 2.04 ms new gain: 5.83 %
Output for 5.3.27
case current: 2.06 ms case new: 2.14 ms new gain: 3.59 %
Output for 5.3.26
case current: 2.45 ms case new: 2.01 ms new gain: -17.74 %
Output for 5.3.25
case current: 1.81 ms case new: 1.86 ms new gain: 2.59 %
Output for 5.3.24
case current: 1.96 ms case new: 2.08 ms new gain: 6.21 %
Output for 5.3.23
case current: 2.18 ms case new: 2.16 ms new gain: -1.2 %
Output for 5.3.22
case current: 1.79 ms case new: 1.85 ms new gain: 3 %
Output for 5.3.21
case current: 1.81 ms case new: 1.93 ms new gain: 6.79 %
Output for 5.3.20
case current: 2.61 ms case new: 2.44 ms new gain: -6.63 %
Output for 5.3.19
case current: 1.82 ms case new: 1.88 ms new gain: 3.24 %
Output for 5.3.18
case current: 2.04 ms case new: 2.07 ms new gain: 1.91 %
Output for 5.3.17
case current: 1.8 ms case new: 1.85 ms new gain: 2.84 %
Output for 5.3.16
case current: 1.9 ms case new: 1.85 ms new gain: -2.37 %
Output for 5.3.15
case current: 2.53 ms case new: 2.56 ms new gain: 1.3 %
Output for 5.3.14
case current: 2.36 ms case new: 2.65 ms new gain: 12.31 %
Output for 5.3.13
case current: 1.84 ms case new: 1.88 ms new gain: 2.16 %
Output for 5.3.12
case current: 2.78 ms case new: 2.91 ms new gain: 4.74 %
Output for 5.3.11
case current: 1.86 ms case new: 1.87 ms new gain: 0.8 %
Output for 5.3.10
case current: 2.5 ms case new: 2.63 ms new gain: 5.2 %
Output for 5.3.9
case current: 3.06 ms case new: 1.84 ms new gain: -39.93 %
Output for 5.3.8
case current: 3.27 ms case new: 2.14 ms new gain: -34.53 %
Output for 5.3.7
case current: 3.19 ms case new: 1.86 ms new gain: -41.89 %
Output for 5.3.6
case current: 1.84 ms case new: 1.89 ms new gain: 2.4 %
Output for 5.3.5
case current: 1.83 ms case new: 1.9 ms new gain: 3.89 %
Output for 5.3.4
case current: 2.18 ms case new: 2.18 ms new gain: 0.37 %
Output for 5.3.3
case current: 1.82 ms case new: 1.85 ms new gain: 1.53 %
Output for 5.3.2
case current: 2.38 ms case new: 2.4 ms new gain: 0.88 %
Output for 5.3.1
case current: 1.86 ms case new: 1.86 ms new gain: -0.17 %
Output for 5.3.0
case current: 2.07 ms case new: 1.99 ms new gain: -3.92 %
Output for 5.2.17
case current: 2.15 ms case new: 2.22 ms new gain: 3.39 %
Output for 5.2.16
case current: 2.3 ms case new: 1.21 ms new gain: -47.57 %
Output for 5.2.15
case current: 1.4 ms case new: 1.2 ms new gain: -14.03 %
Output for 5.2.14
case current: 1.15 ms case new: 1.25 ms new gain: 8.45 %
Output for 5.2.13
case current: 1.14 ms case new: 1.28 ms new gain: 12.34 %
Output for 5.2.12
case current: 1.88 ms case new: 1.9 ms new gain: 0.85 %
Output for 5.2.11
case current: 1.88 ms case new: 1.87 ms new gain: -0.85 %
Output for 5.2.10
case current: 1.63 ms case new: 1.69 ms new gain: 3.76 %
Output for 5.2.9
case current: 1.22 ms case new: 1.43 ms new gain: 17.22 %
Output for 5.2.8
case current: 2.55 ms case new: 1.19 ms new gain: -53.11 %
Output for 5.2.7
case current: 1.25 ms case new: 1.32 ms new gain: 5.36 %
Output for 5.2.6
case current: 1.64 ms case new: 1.71 ms new gain: 3.89 %
Output for 5.2.5
case current: 2.02 ms case new: 1.5 ms new gain: -25.87 %
Output for 5.2.4
case current: 1.47 ms case new: 1.21 ms new gain: -17.61 %
Output for 5.2.3
case current: 2.77 ms case new: 1.23 ms new gain: -55.52 %
Output for 5.2.2
case current: 1.77 ms case new: 1.24 ms new gain: -30 %
Output for 5.2.1
case current: 1.25 ms case new: 1.25 ms new gain: 0.55 %
Output for 5.2.0
case current: 2.27 ms case new: 1.27 ms new gain: -44.16 %
Output for 5.1.6
case current: 2.33 ms case new: 1.31 ms new gain: -43.64 %
Output for 5.1.5
case current: 1.33 ms case new: 1.32 ms new gain: -0.61 %
Output for 5.1.4
case current: 2.69 ms case new: 1.35 ms new gain: -49.76 %
Output for 5.1.3
case current: 1.42 ms case new: 1.41 ms new gain: -0.64 %
Output for 5.1.2
case current: 2.29 ms case new: 2.66 ms new gain: 15.96 %
Output for 5.1.1
case current: 1.34 ms case new: 1.35 ms new gain: 0.89 %
Output for 5.1.0
case current: 1.94 ms case new: 1.66 ms new gain: -14.77 %
Output for 5.0.5
case current: 2.23 ms case new: 1.75 ms new gain: -21.42 %
Output for 5.0.4
case current: 1.8 ms case new: 1.79 ms new gain: -0.77 %
Output for 5.0.3
case current: 2.57 ms case new: 1.66 ms new gain: -35.21 %
Output for 5.0.2
case current: 2.57 ms case new: 2.53 ms new gain: -1.52 %
Output for 5.0.1
case current: 1.86 ms case new: 1.81 ms new gain: -2.7 %
Output for 5.0.0
case current: 2.37 ms case new: 2.02 ms new gain: -14.67 %
Output for 4.4.9
case current: 1.84 ms case new: 1.88 ms new gain: 2.18 %
Output for 4.4.8
case current: 3.69 ms case new: 2.9 ms new gain: -21.25 %
Output for 4.4.7
case current: 1.98 ms case new: 1.93 ms new gain: -2.37 %
Output for 4.4.6
case current: 2.1 ms case new: 2.09 ms new gain: -0.43 %
Output for 4.4.5
case current: 3.38 ms case new: 2.96 ms new gain: -12.54 %
Output for 4.4.4
case current: 1.91 ms case new: 1.82 ms new gain: -4.97 %
Output for 4.4.3
case current: 2.31 ms case new: 2.32 ms new gain: 0.65 %
Output for 4.4.2
case current: 2.01 ms case new: 1.68 ms new gain: -16.7 %
Output for 4.4.1
case current: 1.88 ms case new: 1.88 ms new gain: -0.21 %
Output for 4.4.0
case current: 2.09 ms case new: 2.07 ms new gain: -0.86 %
Output for 4.3.11
case current: 2.25 ms case new: 2.2 ms new gain: -2.14 %
Output for 4.3.10
case current: 1.68 ms case new: 1.66 ms new gain: -0.66 %
Output for 4.3.9
case current: 3.35 ms case new: 2.95 ms new gain: -12.03 %
Output for 4.3.8
case current: 1.71 ms case new: 1.7 ms new gain: -0.7 %
Output for 4.3.7
case current: 2.25 ms case new: 1.75 ms new gain: -21.83 %
Output for 4.3.6
case current: 2.34 ms case new: 2.41 ms new gain: 3.03 %
Output for 4.3.5
case current: 2.47 ms case new: 2.4 ms new gain: -2.88 %
Output for 4.3.4
case current: 2.82 ms case new: 2.87 ms new gain: 1.59 %
Output for 4.3.3
case current: 2.28 ms case new: 2.29 ms new gain: 0.44 %
Output for 4.3.2
case current: 2.23 ms case new: 2.32 ms new gain: 4.18 %
Output for 4.3.1
case current: 1.69 ms case new: 1.68 ms new gain: -0.3 %
Output for 4.3.0
case current: 2.28 ms case new: 2.26 ms new gain: -0.57 %

preferences:
204.71 ms | 401 KiB | 322 Q