Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 15189 was 15017, checked in by pkimmesw, 8 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
RevLine 
[14897]1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Problem {
2  public class EvaluationResult {
3    public EvaluationResult(int exampleCount) {
4      ExampleQualities = new double[exampleCount];
5    }
[14834]6
7
[15017]8    public double AvgQuality { get; set; }
[14897]9    public double[] ExampleQualities { get; set; }
10  }
[14834]11}
Note: See TracBrowser for help on using the repository browser.