]> git.sesse.net Git - stockfish/blobdiff - src/endgame.cpp
Better naming in endgame code
[stockfish] / src / endgame.cpp
index 136ee0f6529002db6f33d3cf016b7f2cec55ba1c..b64b75cbca63e22a0f375611d9e5e4be920ea864 100644 (file)
@@ -110,14 +110,6 @@ Endgames::Endgames() {
 }
 
 
-template<EndgameType E, typename T>
-void Endgames::add(const string& code) {
-  StateInfo st;
-  map<T>()[Position().set(code, WHITE, &st).material_key()] = std::unique_ptr<EndgameBase<T>>(new Endgame<E>(WHITE));
-  map<T>()[Position().set(code, BLACK, &st).material_key()] = std::unique_ptr<EndgameBase<T>>(new Endgame<E>(BLACK));
-}
-
-
 /// Mate with KX vs K. This function is used to evaluate positions with
 /// king and plenty of material vs a lone king. It simply gives the
 /// attacking side a bonus for driving the defending king towards the edge