Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Evaluator/EvaluationResult.cs @ 16986

Last change on this file since 16986 was 15771, checked in by bburlacu, 6 years ago

#2895: Add solution skeleton for PushGP with genealogy analysis.

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