source:
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/Policies/IActionStatistics.cs
@
14429
Last change on this file since 14429 was 13659, checked in by gkronber, 9 years ago | |
---|---|
File size: 345 bytes |
Rev | Line | |
---|---|---|
[13659] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
5 | using System.Threading.Tasks; | |
6 | ||
7 | namespace 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.