diff --git a/src/benchmark.cpp b/src/benchmark.cpp index 3161c4cab..6cda07422 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 ad420fbda..8c70016e7 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 9fbe63502..941e2be58 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 a16fceb13..19955a862 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 3b98ac631..bd20361da 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 88a52bbde..ddee63d74 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 6027295d9..a9391b50a 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 94a388966..1080d5977 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;