Last change
on this file since 17603 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 | |
---|
1 | namespace 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.