Skip to content
Extraits de code Groupes Projets
Valider 8eb04a9e rédigé par Eliah REBSTOCK's avatar Eliah REBSTOCK
Parcourir les fichiers

scores random ELO

parent d4acc517
Aucune branche associée trouvée
Aucune étiquette associée trouvée
2 requêtes de fusion!21Merge de Dev dans Master,!2Dev phoenix
......@@ -13,7 +13,7 @@
* @returns float
* Renvoie la moyenne du tableau en passant l'indice $j
*/
srand();
function avg_skip($tab, $j)
{
$s = 0;
......@@ -45,7 +45,6 @@ function avg_skip($tab, $j)
*/
function ELO($scores_actuel, $scores_obtenus, $K, $D)
{
$newS = array();
$c = max($scores_obtenus)-min($scores_obtenus);
$d = min($scores_obtenus);
......@@ -63,15 +62,24 @@ function ELO($scores_actuel, $scores_obtenus, $K, $D)
$newS[$j] = floor($s);
else
$newS[$j] = ceil($s);
}
return $newS;
}
function random_scores($n, $min, $max)
{
$r = array();
for ($j=0; $j<$n; $j++)
{
array_push($r, rand($min,$max));
}
return $r;
}
/* Test */
print("<html><body><table><th>Itération</th><th>Joueur 1</th><th>Joueur 2</th><th>Joueur 3</th><th>Joueur 4</th><th>Joueur 5</th><th>Somme</th></tr>");
$sa = array(-2,-1,0,1,2);
$DS = array(1000,1000,1000,1000,1000);
print("<tr><td>0</td>");
......@@ -82,31 +90,20 @@ $p = array_sum($DS);
print("<td>$p</td></tr>");
for($j=1;$j<20;$j++){
$sa = array(-2,-1,0,1,2);
$sa = random_scores(5,0, 50);
$res = ELO($DS, $sa, 32, 400);
print("<tr><td>$j</td>");
for ($i=0;$i<count($DS);$i++) {
$DS[$i] = $DS[$i] + $res[$i];
$k1 = $DS[$i];
$k2 = $res[$i];
print("<td>$k1 ($k2)</td>");
}
$p = array_sum($DS);
print("<td>$p</td></tr>");
$j++;
$sa = array(2,1,0,-1,-2);
$res = ELO($DS, $sa, 32, 400);
print("<tr><td>$j</td>");
for ($i=0;$i<count($DS);$i++) {
$DS[$i] = $DS[$i] + $res[$i];
$k1 = $DS[$i];
$k2 = $res[$i];
print("<td>$k1 ($k2)</td>");
$k3 = $sa[$i];
print("<td>$k1 ($k2) ($k3)</td>");
}
$p = array_sum($DS);
print("<td>$p</td></tr>");
}
print("</table></body></html>");
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter