Remove COIL for PU

This commit is contained in:
Ivo Julca
2015-09-20 16:08:59 -05:00
parent d8008c4c77
commit 61bbb769df
2 changed files with 0 additions and 3 deletions

View File

@@ -753,8 +753,6 @@
buffer += '<td>' + Math.round(40.0 * parseFloat(row.gxe) * Math.pow(2.0, -9.0 / N), 0) + '</td>';
} else if (row.formatid === 'doublesoucurrent' || row.formatid === 'doublesoususpecttest') {
buffer += '<td>' + Math.round(40.0 * parseFloat(row.gxe) * Math.pow(2.0, -12.0 / N), 0) + '</td>';
} else if (row.formatid === 'pu') {
buffer += '<td>' + Math.round(40.0 * parseFloat(row.gxe) * Math.pow(2.0, -17.0 / N), 0) + '</td>';
} else {
buffer += '<td>--</td>';
}

View File

@@ -53,7 +53,6 @@ foreach ($toplist as $row)
elseif ($row['formatid'] == 'nususpecttest') echo number_format($N ? 40*$row['gxe']*pow(2.0,-20.0/$N) : 0,1,'.','');
elseif ($row['formatid'] == 'lcsuspecttest') echo number_format($N ? 40*$row['gxe']*pow(2.0,-9.0/$N) : 0,1,'.','');
elseif ($row['formatid'] == 'doublesoucurrent' || $row['formatid'] == 'doublesoususpecttest') echo number_format($N ? 40*$row['gxe']*pow(2.0,-12.0/$N) : 0,1,'.','');
elseif ($row['formatid'] == 'pu') echo number_format($N ? 40*$row['gxe']*pow(2.0,-17.0/$N) : 0,1,'.','');
else echo '--'; ?></td>
</tr>
<?php