]> git.sesse.net Git - stockfish/blobdiff - src/evaluate.h
Introduce simple_eval() for lazy evaluations
[stockfish] / src / evaluate.h
index a222da7361aaeb4e97d349831ef4c511b2b4948c..7f4feedf0c6be62ecad204587d6b49f56e41f35e 100644 (file)
@@ -21,6 +21,8 @@
 
 #include <string>
 
+#include "types.h"
+
 namespace Stockfish {
 
 class Position;
@@ -29,6 +31,8 @@ enum Value : int;
 namespace Eval {
 
   std::string trace(Position& pos);
+
+  Value simple_eval(const Position& pos, Color c);
   Value evaluate(const Position& pos);
 
   extern std::string currentEvalFileName;