Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/17 01:11:18 (7 years ago)
Author:
pkimmesw
Message:

#2665 simplifier, push solution results view, performance improvements, small bug fixes, ui fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/Expression.cs

    r14746 r14777  
    44
    55  using HeuristicLab.Problems.ProgramSynthesis.Push.Attributes;
     6  using HeuristicLab.Problems.ProgramSynthesis.Push.Data.Pool;
    67
    78  using Interpreter;
    89
    910  [Serializable]
    10   public abstract class Expression {
     11  public abstract class Expression : IPooledObject {
    1112    public bool IsProgram { get { return this.GetType() == typeof(PushProgram); } }
    1213
     
    3031      return this.StringRepresentation;
    3132    }
     33
     34    void IPooledObject.Reset() { }
    3235  }
    3336}
Note: See TracChangeset for help on using the changeset viewer.