Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2283: implemented MCTS

File size: 346 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);
13    }
14}
Note: See TracBrowser for help on using the repository browser.