From 493da4216d6ba37e03fc012bb87379c6518fa4a7 Mon Sep 17 00:00:00 2001 From: xiaoou Date: Mon, 13 Jul 2026 03:51:52 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20--mix-ismcts=20=E7=BA=AFISMCTS=E8=AE=AD?= =?UTF-8?q?=E7=BB=83=E6=A8=A1=E5=BC=8F=20+=20--bots=20=E8=87=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89bot=E7=BB=84=E5=90=88=20(Mac=E6=97=A0ONNX=E6=97=B6?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=88=87=E6=8D=A2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hjha-console/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hjha-console/Program.cs b/hjha-console/Program.cs index 03c7a0cd..06bd1544 100644 --- a/hjha-console/Program.cs +++ b/hjha-console/Program.cs @@ -10,6 +10,8 @@ namespace hjha_console static void Main(string[] args) { if (args.Length > 0 && args[0] == "--mix") { PdkGameMain.BotTypes = new[] { "ISMCTS", "ISMCTS", "NEURAL" }; TrainingCollector.Enabled = true; args = new[] { "--stress", args.Length > 1 ? args[1] : "10" }; } + if (args.Length > 0 && args[0] == "--mix-ismcts") { PdkGameMain.BotTypes = new[] { "ISMCTS", "ISMCTS", "ISMCTS" }; TrainingCollector.Enabled = true; args = new[] { "--stress", args.Length > 1 ? args[1] : "10" }; } + if (args.Length > 0 && args[0] == "--bots") { PdkGameMain.BotTypes = args[1].Split(','); TrainingCollector.Enabled = true; args = args.Length > 2 ? new[] { "--stress", args[2] } : new[] { "--stress", "10" }; } if (args.Length > 0 && args[0] == "--stress") { int rounds = args.Length > 1 ? int.Parse(args[1]) : 100;