Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/10/17 00:27:31 (7 years ago)
Author:
pkimmesw
Message:

#2665 LexicaseSelector, Performance improvements, UI Fixes, Debugger only shows used stacks, fixed Debugger stepping, Added vector expressions, ERCOptions,

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Problem/PushSolution.cs

    r14777 r14834  
    2424    public readonly int DataEnd;
    2525
    26     public PushSolution(IntegerVector integerVector, double quality, Data data, IRandom random, IReadOnlyPushConfiguration config, int dataStart, int dataEnd)
     26    [Storable]
     27    public readonly bool Simplify;
     28
     29    public PushSolution(IntegerVector integerVector, double quality, Data data, IRandom random, IReadOnlyPushConfiguration config, int dataStart, int dataEnd, bool simplify = false)
    2730      : base("Solution", "A push solution.") {
    2831      IntegerVector = integerVector;
     
    3336      DataStart = dataStart;
    3437      DataEnd = dataEnd;
     38      Simplify = simplify;
    3539    }
    3640
     
    4347      DataStart = origin.DataStart;
    4448      DataEnd = origin.DataEnd;
     49      Simplify = origin.Simplify;
    4550    }
    4651
Note: See TracChangeset for help on using the changeset viewer.