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:
|
case VIDE:
|
||||||
nb_egalite++;
|
nb_egalite++;
|
||||||
break;
|
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:
|
case NOIR:
|
||||||
if (joueur_noir == MINIMAX) {
|
if (joueur_noir == MINIMAX) {
|
||||||
nb_victoire_minimax++;
|
nb_victoire_minimax++;
|
||||||
printf("Minimax a gagné (profondeur minimax = %d vs %d = "
|
printf(
|
||||||
"profondeur alphabêta)\n",
|
"Minimax\t\ta gagné (profondeur minimax = %d vs %d = "
|
||||||
j, i);
|
"profondeur alphabêta) en tant que noir\n",
|
||||||
|
j, i);
|
||||||
} else {
|
} else {
|
||||||
nb_victoire_alphabeta++;
|
nb_victoire_alphabeta++;
|
||||||
printf(
|
printf(
|
||||||
"Alpha-bêta a gagné (profondeur minimax = %d vs %d = "
|
"Alpha-bêta\ta gagné (profondeur minimax = %d vs %d = "
|
||||||
"profondeur alphabêta)\n",
|
"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);
|
j, i);
|
||||||
}
|
}
|
||||||
break;
|
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("Nombre totale de parties : %d.\n", nb_tests);
|
||||||
printf("Alpha-bêta a gagné %d fois.\n", nb_victoire_alphabeta);
|
printf("Alpha-bêta a gagné\t%d fois.\n", nb_victoire_alphabeta);
|
||||||
printf("Minimax a gagné %d fois.\n", nb_victoire_minimax);
|
printf("Minimax a gagné\t\t%d fois.\n", nb_victoire_minimax);
|
||||||
printf("Il y a eu %d égalités.\n", nb_egalite);
|
printf("Il y a eu\t\t%d égalités.\n", nb_egalite);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue