Changeset 15334 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Encoding/PlushEntry.cs
- Timestamp:
- 08/21/17 11:33:53 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
- Property svn:ignore
-
old new 1 1 *.user 2 packages 3 TestResults
-
- Property svn:ignore
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Encoding/PlushEntry.cs
r15275 r15334 9 9 public PlushEntry() { } 10 10 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] 11 18 public PlushEntry(bool deserializing) : base(deserializing) { } 12 19 … … 14 21 Instruction = cloner.Clone(origin.Instruction); 15 22 Close = origin.Close; 23 Silent = origin.Silent; 16 24 } 17 25 … … 20 28 [Storable] 21 29 public int Close { get; set; } 30 [Storable] 31 public bool Silent { get; set; } 22 32 23 33 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.