Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch/Simulation/ISimulationPolicy.cs @ 12050

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

#2283: first MCTS algorithmus concept

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