Changeset 5051 for branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Symbols/TimeLag.cs
- Timestamp:
- 12/07/10 10:23:58 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Symbols/TimeLag.cs
r5026 r5051 31 31 private TimeLag(bool deserializing) : base(deserializing) { } 32 32 private TimeLag(TimeLag original, Cloner cloner) : base(original, cloner) { } 33 public override IDeepCloneable Clone(Cloner cloner) { 34 return new TimeLag(this, cloner); 35 } 33 public override IDeepCloneable Clone(Cloner cloner) { return new TimeLag(this, cloner); } 34 36 35 public TimeLag() : base("TimeLag", "Represents a symblol whose evaluation is shifted.") { } 37 36 }
Note: See TracChangeset
for help on using the changeset viewer.