Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/13/18 16:56:35 (6 years ago)
Author:
bburlacu
Message:

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

Location:
branches/2895_PushGP_GenealogyAnalysis
Files:
1 added
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/StatefulExpression.cs

    r15366 r15771  
    1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Expressions {
    2   using System;
     1using System;
     2using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    33
    4   using HeuristicLab.Common;
    5   using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    6   using HeuristicLab.Problems.ProgramSynthesis.Push.Data.Pool;
    7 
     4namespace HeuristicLab.Problems.ProgramSynthesis {
    85  [Serializable]
    96  [StorableClass]
     
    3431    }
    3532
    36     public override string StringRepresentation
    37     {
    38       get
    39       {
     33    public override string StringRepresentation {
     34      get {
    4035        return stringRepresentation ?? (stringRepresentation = GetStringRepresentation());
    4136      }
Note: See TracChangeset for help on using the changeset viewer.