]> git.sesse.net Git - stockfish/blobdiff - src/uci.h
Remove killer move conditions from LMR
[stockfish] / src / uci.h
index f4dbbc059b5c1f7ec7450dd8653e8670cd5d0113..eb0353a48afe255d01a80cf9ddc1d7f7c0ad72e3 100644 (file)
--- a/src/uci.h
+++ b/src/uci.h
@@ -17,8 +17,8 @@
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-#ifndef UCIOPTION_H_INCLUDED
-#define UCIOPTION_H_INCLUDED
+#ifndef UCI_H_INCLUDED
+#define UCI_H_INCLUDED
 
 #include <map>
 #include <string>
@@ -69,10 +69,11 @@ void loop(int argc, char* argv[]);
 std::string value(Value v);
 std::string square(Square s);
 std::string move(Move m, bool chess960);
+std::string pv(const Position& pos, Depth depth, Value alpha, Value beta);
 Move to_move(const Position& pos, std::string& str);
 
 } // namespace UCI
 
 extern UCI::OptionsMap Options;
 
-#endif // #ifndef UCIOPTION_H_INCLUDED
+#endif // #ifndef UCI_H_INCLUDED