Used in the UCT algorithm to calculate the node weight of each son during selection
(self)
| 49 | self.messages = [] |
| 50 | |
| 51 | def compute_weight(self): |
| 52 | ''' |
| 53 | Used in the UCT algorithm to calculate the node weight of each son during selection |
| 54 | ''' |
| 55 | return 0.0 |
| 56 | |
| 57 | def get_max_depth(self): |
| 58 | ''' |