You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merci beaucoup pour le livre, très riche en explications.
J'ai cependant un doute sur la fonction findKing qui est censée renvoyer un index mais qui d'après le code renvoie un boolean à travers le return true ?
size_t findKing(ChessBoard const & board, Color color){
assert(color == colorBlack || color == colorWhite );
KingIdentifier identifier(color);
for(size_t index = 0; index < 64; ++index){
if(identifier.check(board.pieceAt(index))){
return true;
}
}
/* Nous ne devrions jamais arriver ici, mais sait-on
* jamais ...
*/
assert(!"no king found, what did you do?");
return 64;
}
The text was updated successfully, but these errors were encountered:
Bonjour,
Merci beaucoup pour le livre, très riche en explications.
J'ai cependant un doute sur la fonction findKing qui est censée renvoyer un index mais qui d'après le code renvoie un boolean à travers le
return true
?The text was updated successfully, but these errors were encountered: