Skip to content

Commit

Permalink
Make Nodes_Limit available in RL mode
Browse files Browse the repository at this point in the history
  • Loading branch information
QueensGambit committed Sep 6, 2024
1 parent 8cc9b52 commit 7eeb19b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/uci/optionsuci.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ void OptionsUCI::init(OptionsMap &o)
o["Nodes"] << Option(800, 0, 99999999);
#else
o["Nodes"] << Option(0, 0, 99999999);
o["Nodes_Limit"] << Option(0, 0, 999999999);
#endif
o["Nodes_Limit"] << Option(0, 0, 999999999);
#ifdef TENSORRT
o["Precision"] << Option("float16", {"float32", "float16", "int8"});
#else
Expand Down

0 comments on commit 7eeb19b

Please sign in to comment.