clang++ -O3 -std=c++20 -Wall -Wextra -march=native -flto -fuse-ld=lld -DEVALFILE=\"/home/nocturn9x/OpenBench/Client/Networks/9C1A2B27\" Turbulence_v4/BitManipulation.cpp Turbulence_v4/Board.cpp Turbulence_v4/Evaluation.cpp Turbulence_v4/MoveGeneration.cpp Turbulence_v4/Search.cpp Turbulence_v4/UCI.cpp -o Turbulence-F92D90C9-9C1A2B27
In file included from Turbulence_v4/Board.cpp:1:
In file included from Turbulence_v4/Board.h:5:
Turbulence_v4/Accumulator.h:44:98: error: unknown type name 'size_t'; did you mean 'std::size_t'?
44 | inline void accumulatorAdd(const struct Network* const network, struct Accumulator* accumulator, size_t index)
| ^~~~~~
| std::size_t
/opt/rh/gcc-toolset-13/root/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/x86_64-redhat-linux/bits/c++config.h:2605:26: note: 'std::size_t' declared here
2605 | typedef __SIZE_TYPE__ size_t;
| ^
In file included from Turbulence_v4/Board.cpp:1:
In file included from Turbulence_v4/Board.h:5:
Turbulence_v4/Accumulator.h:50:98: error: unknown type name 'size_t'; did you mean 'std::size_t'?
50 | inline void accumulatorSub(const struct Network* const network, struct Accumulator* accumulator, size_t index)
| ^~~~~~
| std::size_t
/opt/rh/gcc-toolset-13/root/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/x86_64-redhat-linux/bits/c++config.h:2605:26: note: 'std::size_t' declared here
2605 | typedef __SIZE_TYPE__ size_t;
| ^
Turbulence_v4/Board.cpp:319:9: warning: variable 'num' set but not used [-Wunused-but-set-variable]
319 | int num = 0;
| ^
1 warning and 2 errors generated.
In file included from Turbulence_v4/Evaluation.cpp:3:
In file included from Turbulence_v4/Evaluation.h:2:
In file included from Turbulence_v4/Board.h:5:
Turbulence_v4/Accumulator.h:44:98: error: unknown type name 'size_t'; did you mean 'std::size_t'?
44 | inline void accumulatorAdd(const struct Network* const network, struct Accumulator* accumulator, size_t index)
| ^~~~~~
| std::size_t
/opt/rh/gcc-toolset-13/root/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/x86_64-redhat-linux/bits/c++config.h:2605:26: note: 'std::size_t' declared here
2605 | typedef __SIZE_TYPE__ size_t;
| ^
In file included from Turbulence_v4/Evaluation.cpp:3:
In file included from Turbulence_v4/Evaluation.h:2:
In file included from Turbulence_v4/Board.h:5:
Turbulence_v4/Accumulator.h:50:98: error: unknown type name 'size_t'; did you mean 'std::size_t'?
50 | inline void accumulatorSub(const struct Network* const network, struct Accumulator* accumulator, size_t index)
| ^~~~~~
| std::size_t
/opt/rh/gcc-toolset-13/root/usr/lib/gcc/x86_64-redhat-linux/13/../../../../include/c++/13/x86_64-redhat-linux/bits/c++config.h:2605:26: note: 'std::size_t' declared here
2605 | typedef __SIZE_TYPE__ size_t;
| ^
Turbulence_v4/Evaluation.cpp:237:11: warning: variable 'sum' set but not used [-Wunused-but-set-variable]
237 | uint64_t sum = 0;
| ^
1 warning and 2 errors generated.
Turbulence_v4/Search.cpp:821:51: warning: comparison of integers of different signs: 'int' and 'uint64_t' (aka 'unsigned long') [-Wsign-compare]
821 | if (elapsedMS > Searchtime_MS || searchNodeCount >= hardNodeBound) {
| ~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~
Turbulence_v4/Search.cpp:1003:51: warning: comparison of integers of different signs: 'int' and 'uint64_t' (aka 'unsigned long') [-Wsign-compare]
1003 | if (elapsedMS > Searchtime_MS || searchNodeCount >= hardNodeBound) {
| ~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~
Turbulence_v4/Search.cpp:1613:22: warning: unused parameter 'PV_line' [-Wunused-parameter]
1613 | void print_UCI(Move(&PV_line)[99][99], Move& bestmove, int score, float elapsedMS, float nps)
| ^
Turbulence_v4/Search.cpp:1645:25: warning: unused parameter 'PV_line' [-Wunused-parameter]
1645 | void print_Pretty(Move(&PV_line)[99][99], Move& bestmove, int score, float elapsedMS, float nps, int window_change, int asp_alpha, int asp_beta)
| ^
Turbulence_v4/Search.cpp:1645:49: warning: unused parameter 'bestmove' [-Wunused-parameter]
1645 | void print_Pretty(Move(&PV_line)[99][99], Move& bestmove, int score, float elapsedMS, float nps, int window_change, int asp_alpha, int asp_beta)
| ^
Turbulence_v4/Search.cpp:1645:102: warning: unused parameter 'window_change' [-Wunused-parameter]
1645 | void print_Pretty(Move(&PV_line)[99][99], Move& bestmove, int score, float elapsedMS, float nps, int window_change, int asp_alpha, int asp_beta)
| ^
Turbulence_v4/Search.cpp:1645:121: warning: unused parameter 'asp_alpha' [-Wunused-parameter]
1645 | void print_Pretty(Move(&PV_line)[99][99], Move& bestmove, int score, float elapsedMS, float nps, int window_change, int asp_alpha, int asp_beta)
| ^
Turbulence_v4/Search.cpp:1645:136: warning: unused parameter 'asp_beta' [-Wunused-parameter]
1645 | void print_Pretty(Move(&PV_line)[99][99], Move& bestmove, int score, float elapsedMS, float nps, int window_change, int asp_alpha, int asp_beta)
| ^
Turbulence_v4/Search.cpp:1805:83: warning: unused parameter 'PrintRootVal' [-Wunused-parameter]
1805 | std::pair<Move, int> IterativeDeepening(Board& board, int depth, int timeMS, bool PrintRootVal, bool print_info, int softbound, int baseTime, int maxTime, uint64_t softNodes, uint64_t hardNodes)
| ^
Turbulence_v4/Search.cpp:1941:17: warning: comparison of integers of different signs: 'uint64_t' (aka 'unsigned long') and 'int' [-Wsign-compare]
1941 | if (softNodes != -1)
| ~~~~~~~~~ ^ ~~
Turbulence_v4/Search.cpp:1943:24: warning: comparison of integers of different signs: 'int' and 'uint64_t' (aka 'unsigned long') [-Wsign-compare]
1943 | if (searchNodeCount > softNodes)
| ~~~~~~~~~~~~~~~ ^ ~~~~~~~~~
Turbulence_v4/Search.cpp:2151:7: warning: variable 'howMuchTry' set but not used [-Wunused-but-set-variable]
2151 | int howMuchTry = 0;
| ^
Turbulence_v4/Search.cpp:2251:6: warning: variable 'whiteMinor' set but not used [-Wunused-but-set-variable]
2251 | int whiteMinor = 0, blackMinor = 0;
| ^
Turbulence_v4/Search.cpp:2251:22: warning: variable 'blackMinor' set but not used [-Wunused-but-set-variable]
2251 | int whiteMinor = 0, blackMinor = 0;
| ^
Turbulence_v4/Search.cpp:2355:62: warning: unused parameter 'output' [-Wunused-parameter]
2355 | void filterData(const std::string& input, const std::string& output) {
| ^
Turbulence_v4/Search.cpp:2429:7: warning: variable 'plyCount' set but not used [-Wunused-but-set-variable]
2429 | int plyCount = 0;
| ^
Turbulence_v4/Search.cpp:2509:20: warning: comparison of integers of different signs: 'int' and 'size_type' (aka 'unsigned long') [-Wsign-compare]
2509 | for(int i = 0; i < gameData.size(); i++)
| ~ ^ ~~~~~~~~~~~~~~~
17 warnings generated.
Turbulence_v4/UCI.cpp:339:40: warning: unused parameter 'incre' [-Wunused-parameter]
339 | int Calculate_Hard_Bound(int time, int incre)
| ^
Turbulence_v4/UCI.cpp:706:20: warning: unused variable 'nps' [-Wunused-variable]
706 | double nps = nodes / second;
| ^~~
Turbulence_v4/UCI.cpp:489:46: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int' [-Wsign-compare]
489 | for (size_t j = 0; j < moveList.count; j++)
| ~ ^ ~~~~~~~~~~~~~~
Turbulence_v4/UCI.cpp:607:46: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int' [-Wsign-compare]
607 | for (size_t j = 0; j < moveList.count; j++)
| ~ ^ ~~~~~~~~~~~~~~
Turbulence_v4/UCI.cpp:839:30: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int' [-Wsign-compare]
839 | for (size_t j = 0; j < moveList.count; j++)
| ~ ^ ~~~~~~~~~~~~~~
Turbulence_v4/UCI.cpp:956:14: warning: unused variable 'hash_key' [-Wunused-variable]
956 | uint64_t hash_key = 0ULL;
| ^~~~~~~~
6 warnings generated.
make: *** [Makefile:27: Turbulence-F92D90C9-9C1A2B27] Error 1