From 5cbcff55cc3a2ff78dd83e7a3f94c5414946f82c Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Sun, 26 Oct 2014 07:09:19 +0100 Subject: [PATCH] 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. --- src/benchmark.cpp | 2 +- src/evaluate.cpp | 2 +- src/main.cpp | 2 +- src/search.cpp | 2 +- src/thread.cpp | 2 +- src/timeman.cpp | 2 +- src/uci.cpp | 2 +- src/{ucioption.h => uci.h} | 0 src/ucioption.cpp | 2 +- 9 files changed, 8 insertions(+), 8 deletions(-) rename src/{ucioption.h => uci.h} (100%) 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;