Skip to content

Commit

Permalink
Restore development version
Browse files Browse the repository at this point in the history
bench: 8732553
  • Loading branch information
mcostalba committed May 31, 2014
1 parent 54f8a9c commit f5622cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/misc.cpp
Expand Up @@ -28,7 +28,7 @@ using namespace std;

/// Version number. If Version is left empty, then compile date in the format
/// DD-MM-YY and show in engine_info.
static const string Version = "5";
static const string Version = "";


/// engine_info() returns the full name of the current Stockfish version. This
Expand Down
2 changes: 1 addition & 1 deletion src/uci.cpp
Expand Up @@ -202,7 +202,7 @@ void UCI::loop(int argc, char* argv[]) {
Search::RootColor = pos.side_to_move(); // Ensure it is set
sync_cout << Eval::trace(pos) << sync_endl;
}
else if (token == "ucinewgame") { /* Avoid returning "Unknown command" */ }
else if (token == "ucinewgame") TT.clear();
else if (token == "go") go(pos, is);
else if (token == "position") position(pos, is);
else if (token == "setoption") setoption(is);
Expand Down

0 comments on commit f5622cd

Please sign in to comment.