Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/28/17 22:52:08 (7 years ago)
Author:
pkimmesw
Message:

#2665 Dynamic ErcValues, Separate Push from BenchmarkSuite Push

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Example.cs

    r14875 r14897  
    1818
    1919    public Example() {
    20       this.InputInteger = emptyIntegers;
     20      InputInteger = emptyIntegers;
    2121      InputFloat = emptyFloats;
    2222      InputBoolean = emptyBooleans;
     
    2828      InputStringVector = emptyStringVectors;
    2929
    30       this.OutputInteger = emptyIntegers;
     30      OutputInteger = emptyIntegers;
    3131      OutputFloat = emptyFloats;
    3232      OutputBoolean = emptyBooleans;
     
    3737      OutputBooleanVector = emptyBooleanVectors;
    3838      OutputStringVector = emptyStringVectors;
     39      OutputPrint = string.Empty;
    3940    }
    4041
     
    5455
    5556      OutputBoolean = (bool[])origin.OutputBoolean.Clone();
    56       this.OutputInteger = (long[])origin.OutputInteger.Clone();
     57      OutputInteger = (long[])origin.OutputInteger.Clone();
    5758      OutputFloat = (double[])origin.OutputFloat.Clone();
    5859      OutputChar = (char[])origin.OutputChar.Clone();
     
    6263      OutputBooleanVector = (bool[][])origin.OutputBooleanVector.Clone();
    6364      OutputStringVector = (string[][])origin.OutputStringVector.Clone();
     65      OutputPrint = origin.OutputPrint;
    6466    }
    6567
     
    109111    [Storable]
    110112    public string[][] OutputStringVector { get; set; }
     113    [Storable]
     114    public string OutputPrint { get; set; }
    111115
    112116    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.