From: Marco Costalba Date: Sun, 26 Oct 2014 06:09:19 +0000 (+0100) Subject: Rename ucioption.h to uci.h X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=5cbcff55cc3a2ff78dd83e7a3f94c5414946f82c;p=fairystockfish.git 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 3161c4c..6cda074 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 ad420fb..8c70016 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 9fbe635..941e2be 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 a16fceb..19955a8 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 3b98ac6..bd20361 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 88a52bb..ddee63d 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 6027295..a9391b5 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 94a3889..1080d59 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;