X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fendgame.h;h=b560c7989f9d93c72e65995f99ce6bc7ce200498;hp=78b31d82ec2ab0f769327a5370f7e55740fc05ea;hb=52f3e717fa93c8774f37c249b05aa857993ee8a2;hpb=cee6336515d5772370d061aa54cf3ec9f9a0d3c2 diff --git a/src/endgame.h b/src/endgame.h index 78b31d82..b560c798 100644 --- a/src/endgame.h +++ b/src/endgame.h @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2013 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -58,6 +58,7 @@ enum EndgameType { KBPPKB, // KBPP vs KB KBPKN, // KBP vs KN KNPK, // KNP vs K + KNPKB, // KNP vs KB KPKP // KP vs KP }; @@ -112,7 +113,7 @@ class Endgames { public: Endgames(); - ~Endgames(); + ~Endgames(); template T probe(Key key, T& eg) { return eg = map(eg).count(key) ? map(eg)[key] : NULL; }