diff --git a/cpp/configs/gtp_example.cfg b/cpp/configs/gtp_example.cfg index 9ee7db2be..96264fd32 100644 --- a/cpp/configs/gtp_example.cfg +++ b/cpp/configs/gtp_example.cfg @@ -147,6 +147,11 @@ playoutDoublingAdvantagePla = WHITE # documented at https://lightvector.github.io/KataGo/rules.html # preventCleanupPhase = true +# Misc Behavior -------------------- + +# Uncomment and set to true to make KataGo avoid a particular joseki that some KataGo nets misevaluate, +# and also to improve opening diversity versus some particular other bots that like to play it all the time. +# avoidMYTDaggerHack = false # Search limits----------------------------------------------------------------------------------- diff --git a/cpp/program/gtpconfig.cpp b/cpp/program/gtpconfig.cpp index ae271f2f8..e4d07d13e 100644 --- a/cpp/program/gtpconfig.cpp +++ b/cpp/program/gtpconfig.cpp @@ -65,6 +65,12 @@ dynamicPlayoutDoublingAdvantageCapPerOppLead = 0.04 # Controls which side dynamicPlayoutDoublingAdvantageCapPerOppLead or playoutDoublingAdvantage applies to. playoutDoublingAdvantagePla = WHITE +# Misc Behavior -------------------- + +# Uncomment and set to true to make KataGo avoid a particular joseki that some KataGo nets misevaluate, +# and also to improve opening diversity versus some particular other bots that like to play it all the time. +# avoidMYTDaggerHack = false + # Search limits----------------------------------------------------------------------------------- # If provided, limit maximum number of root visits per search to this much. (With tree reuse, visits do count earlier search)