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/Encoding/PlushEntry.cs

    r15275 r15334  
    99    public PlushEntry() { }
    1010
     11    public PlushEntry(Expression instruction = null, int close = 0, bool silent = false) {
     12      Instruction = instruction;
     13      Close = close;
     14      Silent = silent;
     15    }
     16
     17    [StorableConstructor]
    1118    public PlushEntry(bool deserializing) : base(deserializing) { }
    1219
     
    1421      Instruction = cloner.Clone(origin.Instruction);
    1522      Close = origin.Close;
     23      Silent = origin.Silent;
    1624    }
    1725
     
    2028    [Storable]
    2129    public int Close { get; set; }
     30    [Storable]
     31    public bool Silent { get; set; }
    2232
    2333    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.