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 | |
---|
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, out string simulatedPhrase);
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.