Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 | using HeuristicLab.Algorithms.Bandits;
|
---|
7 | using HeuristicLab.Algorithms.Bandits.BanditPolicies;
|
---|
8 | using HeuristicLab.Problems.GrammaticalOptimization;
|
---|
9 |
|
---|
10 | namespace HeuristicLab.Algorithms.MonteCarloTreeSearch.Base
|
---|
11 | {
|
---|
12 | public class TreeNode
|
---|
13 | {
|
---|
14 | public string phrase;
|
---|
15 | public TreeNode parent;
|
---|
16 | public List<TreeNode> children;
|
---|
17 | public IBanditPolicyActionInfo actionInfo;
|
---|
18 |
|
---|
19 | public TreeNode(TreeNode parent, string phrase)
|
---|
20 | {
|
---|
21 | this.parent = parent;
|
---|
22 | this.phrase = phrase;
|
---|
23 | actionInfo = new DefaultPolicyActionInfo();
|
---|
24 | }
|
---|
25 | public bool IsLeaf()
|
---|
26 | {
|
---|
27 | return children == null || !children.Any();
|
---|
28 | }
|
---|
29 |
|
---|
30 | internal IEnumerable<IBanditPolicyActionInfo> GetChildActionInfos()
|
---|
31 | {
|
---|
32 | return children.Select(n => n.actionInfo);
|
---|
33 | }
|
---|
34 | }
|
---|
35 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.