copy notebook to result after mcts

This commit is contained in:
Yizhou Chi 2024-09-20 15:53:10 +08:00
parent 32fc96cf71
commit 8dbcd46bfc
6 changed files with 47 additions and 17 deletions

View file

@ -87,6 +87,9 @@ class Node:
def get_depth(self):
return self.depth
def get_node_dir(self):
return self.state["node_dir"]
def generate_depth(self):
if self.parent is None:
return 0