fix text padding
This commit is contained in:
parent
68c7f2824a
commit
6302ed8b55
1 changed files with 24 additions and 22 deletions
46
src/test.c
46
src/test.c
|
@ -106,31 +106,33 @@ void winrate_test(int profondeur_max_minimax, int profondeur_max_alphabeta) {
|
|||
case VIDE:
|
||||
nb_egalite++;
|
||||
break;
|
||||
case BLANC:
|
||||
if (joueur_blanc == MINIMAX) {
|
||||
nb_victoire_minimax++;
|
||||
printf("Minimax a gagné (profondeur minimax = %d vs %d = "
|
||||
"profondeur alphabêta)\n",
|
||||
j, i);
|
||||
} else {
|
||||
nb_victoire_alphabeta++;
|
||||
printf(
|
||||
"Alpha-bêta a gagné (profondeur minimax = %d vs %d = "
|
||||
"profondeur alphabêta)\n",
|
||||
j, i);
|
||||
}
|
||||
break;
|
||||
case NOIR:
|
||||
if (joueur_noir == MINIMAX) {
|
||||
nb_victoire_minimax++;
|
||||
printf("Minimax a gagné (profondeur minimax = %d vs %d = "
|
||||
"profondeur alphabêta)\n",
|
||||
j, i);
|
||||
printf(
|
||||
"Minimax\t\ta gagné (profondeur minimax = %d vs %d = "
|
||||
"profondeur alphabêta) en tant que noir\n",
|
||||
j, i);
|
||||
} else {
|
||||
nb_victoire_alphabeta++;
|
||||
printf(
|
||||
"Alpha-bêta a gagné (profondeur minimax = %d vs %d = "
|
||||
"profondeur alphabêta)\n",
|
||||
"Alpha-bêta\ta gagné (profondeur minimax = %d vs %d = "
|
||||
"profondeur alphabêta) en tant que noir\n",
|
||||
j, i);
|
||||
}
|
||||
break;
|
||||
case BLANC:
|
||||
if (joueur_blanc == MINIMAX) {
|
||||
nb_victoire_minimax++;
|
||||
printf(
|
||||
"Minimax\t\ta gagné (profondeur minimax = %d vs %d = "
|
||||
"profondeur alphabêta) en tant que blanc\n",
|
||||
j, i);
|
||||
} else {
|
||||
nb_victoire_alphabeta++;
|
||||
printf(
|
||||
"Alpha-bêta\ta gagné (profondeur minimax = %d vs %d = "
|
||||
"profondeur alphabêta) en tant que blanc\n",
|
||||
j, i);
|
||||
}
|
||||
break;
|
||||
|
@ -148,7 +150,7 @@ void winrate_test(int profondeur_max_minimax, int profondeur_max_alphabeta) {
|
|||
}
|
||||
|
||||
printf("Nombre totale de parties : %d.\n", nb_tests);
|
||||
printf("Alpha-bêta a gagné %d fois.\n", nb_victoire_alphabeta);
|
||||
printf("Minimax a gagné %d fois.\n", nb_victoire_minimax);
|
||||
printf("Il y a eu %d égalités.\n", nb_egalite);
|
||||
printf("Alpha-bêta a gagné\t%d fois.\n", nb_victoire_alphabeta);
|
||||
printf("Minimax a gagné\t\t%d fois.\n", nb_victoire_minimax);
|
||||
printf("Il y a eu\t\t%d égalités.\n", nb_egalite);
|
||||
}
|
||||
|
|
Reference in a new issue