]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Stockfish DD
[stockfish] / src / misc.cpp
index a9b1f17eaea6514c19b0244cf2648c87b4921da0..d11ab8d785625fc471aa7bcaae19b00f31fd9c00 100644 (file)
@@ -28,7 +28,7 @@ using namespace std;
 
 /// Version number. If Version is left empty, then compile date, in the
 /// format DD-MM-YY, is shown in engine_info.
-static const string Version = "";
+static const string Version = "DD";
 
 
 /// engine_info() returns the full name of the current Stockfish version. This
@@ -75,7 +75,7 @@ void dbg_print() {
 
   if (means[0])
       cerr << "Total " << means[0] << " Mean "
-           << (float)means[1] / means[0] << endl;
+           << (double)means[1] / means[0] << endl;
 }