Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch/Simulation/ISimulation.cs @ 13231

Last change on this file since 13231 was 12762, checked in by aballeit, 9 years ago

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

File size: 374 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.Algorithms.MonteCarloTreeSearch.Base;
7
8namespace HeuristicLab.Algorithms.MonteCarloTreeSearch.Simulation
9{
10    public interface ISimulation
11    {
12        double Simulate(TreeNode node, out string simulatedPhrase);
13    }
14}
Note: See TracBrowser for help on using the repository browser.