using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using HeuristicLab.Algorithms.MonteCarloTreeSearch.Base; namespace HeuristicLab.Algorithms.MonteCarloTreeSearch.Simulation { public interface ISimulation { double Simulate(TreeNode node); } }