Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/Policies/IActionStatistics.cs @ 14929

Last change on this file since 14929 was 14929, checked in by gkronber, 7 years ago

#2520 fixed unit tests for new persistence: loading & storing all samples

File size: 436 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.Persistence;
7
8namespace HeuristicLab.Algorithms.DataAnalysis.MctsSymbolicRegression.Policies {
9  [StorableType("d1132b07-26e0-4904-bd87-776d5989979f")]
10  public interface IActionStatistics {
11    double AverageQuality { get; }
12    int Tries { get; }
13    bool Done { get; set; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.