Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Evaluator/EvaluationResult.cs @ 15289

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

#2665 Fixed analyzer, fixed Plush encoding + operators, adpated print evaluation according to McPhee

File size: 321 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Evaluator {
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.