Changeset 12827 for branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch
- Timestamp:
- 08/02/15 13:13:25 (9 years ago)
- Location:
- branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch/MonteCarloTreeSearch.cs
r12815 r12827 97 97 currentNode.GetChildActionInfos()); 98 98 currentNode = currentNode.children[currentActionIndex]; 99 selections++;100 CheckSelection(currentNode, selections);99 //selections++; 100 //CheckSelection(currentNode, selections); 101 101 } 102 102 … … 109 109 currentNode.children[behaviourPolicy.SelectAction(random, currentNode.GetChildActionInfos()) 110 110 ]; 111 selections++;112 CheckSelection(currentNode, selections);111 //selections++; 112 //CheckSelection(currentNode, selections); 113 113 } 114 114 if (currentNode.phrase.Length <= maxLen) -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch/MonteCarloTreeSearch_PruneLeaves.cs
r12815 r12827 38 38 currentNode.GetChildActionInfos()); 39 39 currentNode = currentNode.children[currentActionIndex]; 40 selections++;41 CheckSelection(currentNode, selections);40 //selections++; 41 //CheckSelection(currentNode, selections); 42 42 } 43 43 … … 59 59 currentNode.children[behaviourPolicy.SelectAction(random, currentNode.GetChildActionInfos()) 60 60 ]; 61 selections++;62 CheckSelection(currentNode, selections);61 //selections++; 62 //CheckSelection(currentNode, selections); 63 63 } 64 64 else
Note: See TracChangeset
for help on using the changeset viewer.