Changeset 15018 for branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators
- Timestamp:
- 06/01/17 11:29:49 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators/FullTreeCreator.cs
r14927 r15018 36 36 37 37 [StorableConstructor] 38 protected FullTreeCreator( booldeserializing) : base(deserializing) { }38 protected FullTreeCreator(StorableConstructorFlag deserializing) : base(deserializing) { } 39 39 protected FullTreeCreator(FullTreeCreator original, Cloner cloner) : base(original, cloner) { } 40 40 -
branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators/GrowTreeCreator.cs
r14927 r15018 33 33 public class GrowTreeCreator : SymbolicExpressionTreeCreator { 34 34 [StorableConstructor] 35 protected GrowTreeCreator( booldeserializing) : base(deserializing) { }35 protected GrowTreeCreator(StorableConstructorFlag deserializing) : base(deserializing) { } 36 36 protected GrowTreeCreator(GrowTreeCreator original, Cloner cloner) : base(original, cloner) { } 37 37 -
branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators/ProbabilisticTreeCreator.cs
r14927 r15018 37 37 38 38 [StorableConstructor] 39 protected ProbabilisticTreeCreator( booldeserializing) : base(deserializing) { }39 protected ProbabilisticTreeCreator(StorableConstructorFlag deserializing) : base(deserializing) { } 40 40 protected ProbabilisticTreeCreator(ProbabilisticTreeCreator original, Cloner cloner) : base(original, cloner) { } 41 41 public ProbabilisticTreeCreator() -
branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators/RampedHalfAndHalfTreeCreator.cs
r14927 r15018 31 31 public class RampedHalfAndHalfTreeCreator : SymbolicExpressionTreeCreator { 32 32 [StorableConstructor] 33 protected RampedHalfAndHalfTreeCreator( booldeserializing) : base(deserializing) { }33 protected RampedHalfAndHalfTreeCreator(StorableConstructorFlag deserializing) : base(deserializing) { } 34 34 protected RampedHalfAndHalfTreeCreator(RampedHalfAndHalfTreeCreator original, Cloner cloner) : base(original, cloner) { } 35 35 -
branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Creators/SymbolicExpressionTreeCreator.cs
r14927 r15018 56 56 57 57 [StorableConstructor] 58 protected SymbolicExpressionTreeCreator( booldeserializing) : base(deserializing) { }58 protected SymbolicExpressionTreeCreator(StorableConstructorFlag deserializing) : base(deserializing) { } 59 59 protected SymbolicExpressionTreeCreator(SymbolicExpressionTreeCreator original, Cloner cloner) : base(original, cloner) { } 60 60 protected SymbolicExpressionTreeCreator()
Note: See TracChangeset
for help on using the changeset viewer.