Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/14/15 20:42:55 (9 years ago)
Author:
aballeit
Message:

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch/Base/TreeNode.cs

    r12503 r12762  
    1616        public List<TreeNode> children;
    1717        public IBanditPolicyActionInfo actionInfo;
     18        public int level;
    1819
    19         public TreeNode(TreeNode parent, string phrase, IBanditPolicyActionInfo actionInfo)
     20        public TreeNode(TreeNode parent, string phrase, IBanditPolicyActionInfo actionInfo, int level)
    2021        {
    2122            this.parent = parent;
    2223            this.phrase = phrase;
    2324            this.actionInfo = actionInfo;
     25            this.level = level;
    2426        }
    2527        public bool IsLeaf()
Note: See TracChangeset for help on using the changeset viewer.