source:
branches/RBFRegression/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/Policies/IActionStatistics.cs
@
14385
Last change on this file since 14385 was 13659, checked in by gkronber, 9 years ago | |
---|---|
File size: 345 bytes |
Line | |
---|---|
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.