Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MCTS-SymbReg-2796/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/Policies/IActionStatistics.cs @ 15426

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

#2796 made several changes for debugging

File size: 420 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    double BestQuality { get; }
11    int Tries { get; }
12    bool Done { get; set; }
13
14    void Add(IActionStatistics stats);
15  }
16}
Note: See TracBrowser for help on using the repository browser.