Last change
on this file since 16300 was
14929,
checked in by gkronber, 8 years ago
|
#2520 fixed unit tests for new persistence: loading & storing all samples
|
File size:
436 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 | using HeuristicLab.Persistence;
|
---|
7 |
|
---|
8 | namespace 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.