Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/EvaluationResult.cs @ 15032

Last change on this file since 15032 was 15017, checked in by pkimmesw, 7 years ago

#2665 Fixed Benchmark Problem Definition, Converted LoopExpressions to stateless expressions, Added several unit test to ensure funcionality, Fixed UI bugs

File size: 319 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Problem {
2  public class EvaluationResult {
3    public EvaluationResult(int exampleCount) {
4      ExampleQualities = new double[exampleCount];
5    }
6
7
8    public double AvgQuality { get; set; }
9    public double[] ExampleQualities { get; set; }
10  }
11}
Note: See TracBrowser for help on using the repository browser.