Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/21/17 11:33:53 (7 years ago)
Author:
pkimmesw
Message:

#2665 Testet Problems, Testet error functions, Small fixes, Created HL files

Location:
branches/PushGP/HeuristicLab.PushGP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP

    • Property svn:ignore
      •  

        old new  
        11*.user
         2packages
         3TestResults
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/Expression.cs

    r15189 r15334  
    11namespace HeuristicLab.Problems.ProgramSynthesis.Push.Expressions {
    22  using System;
    3   using System.Collections.Generic;
    43
    54  using HeuristicLab.Common;
     
    2019    public bool IsProgram { get { return GetType() == typeof(PushProgram); } }
    2120
    22     public static readonly IReadOnlyCollection<Expression> EmptyContainer = new Expression[0];
    23 
    24     public abstract string StringRepresentation
    25     {
    26       get;
    27     }
     21    public abstract string StringRepresentation { get; }
    2822
    2923    public abstract bool IsNoop(IInternalPushInterpreter interpreter);
     
    4337
    4438    public object Clone() {
    45       return Clone(new Cloner());
     39      return this;
    4640    }
    4741
     
    5044    }
    5145
    52     void IPooledObject.Init() { }
    53 
    5446    void IPooledObject.Reset() { }
    5547  }
Note: See TracChangeset for help on using the changeset viewer.