From: Marco Costalba Date: Sun, 26 Oct 2014 06:09:19 +0000 (+0100) Subject: Rename ucioption.h to uci.h X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=5cbcff55cc3a2ff78dd83e7a3f94c5414946f82c;hp=428962a2e8c754311119fa4f66c7c248d63cb2c8 Rename ucioption.h to uci.h We are going to add all UCI related functions here, so first rename it to a more proper name. No functional change. --- diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 3161c4ca..6cda0742 100644 --- a/src/benchmark.cpp +++ b/src/benchmark.cpp @@ -29,7 +29,7 @@ #include "search.h" #include "thread.h" #include "tt.h" -#include "ucioption.h" +#include "uci.h" using namespace std; diff --git a/src/evaluate.cpp b/src/evaluate.cpp index ad420fbd..8c70016e 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -27,7 +27,7 @@ #include "material.h" #include "pawns.h" #include "thread.h" -#include "ucioption.h" +#include "uci.h" namespace { diff --git a/src/main.cpp b/src/main.cpp index 9fbe6350..941e2be5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,7 +25,7 @@ #include "search.h" #include "thread.h" #include "tt.h" -#include "ucioption.h" +#include "uci.h" int main(int argc, char* argv[]) { diff --git a/src/search.cpp b/src/search.cpp index a16fceb1..19955a86 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -33,7 +33,7 @@ #include "timeman.h" #include "thread.h" #include "tt.h" -#include "ucioption.h" +#include "uci.h" namespace Search { diff --git a/src/thread.cpp b/src/thread.cpp index 3b98ac63..bd20361d 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -23,7 +23,7 @@ #include "movegen.h" #include "search.h" #include "thread.h" -#include "ucioption.h" +#include "uci.h" using namespace Search; diff --git a/src/timeman.cpp b/src/timeman.cpp index 88a52bbd..ddee63d7 100644 --- a/src/timeman.cpp +++ b/src/timeman.cpp @@ -23,7 +23,7 @@ #include "search.h" #include "timeman.h" -#include "ucioption.h" +#include "uci.h" namespace { diff --git a/src/uci.cpp b/src/uci.cpp index 6027295d..a9391b50 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -28,7 +28,7 @@ #include "search.h" #include "thread.h" #include "tt.h" -#include "ucioption.h" +#include "uci.h" using namespace std; diff --git a/src/ucioption.h b/src/uci.h similarity index 100% rename from src/ucioption.h rename to src/uci.h diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 94a38896..1080d597 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -26,7 +26,7 @@ #include "misc.h" #include "thread.h" #include "tt.h" -#include "ucioption.h" +#include "uci.h" using std::string;