Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/Policies/IActionStatistics.cs @ 13659

Last change on this file since 13659 was 13659, checked in by gkronber, 8 years ago

#2581: added source files for policies

File size: 345 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Algorithms.DataAnalysis.MctsSymbolicRegression.Policies {
8  public interface IActionStatistics {
9    double AverageQuality { get; }
10    int Tries { get; }
11    bool Done { get; set; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.