source:
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch/Simulation/ISimulation.cs
@
12336
Last change on this file since 12336 was 12098, checked in by aballeit, 10 years ago | |
---|---|
File size: 346 bytes |
Rev | Line | |
---|---|---|
[12098] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
5 | using System.Threading.Tasks; | |
6 | using HeuristicLab.Algorithms.MonteCarloTreeSearch.Base; | |
7 | ||
8 | namespace 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.