Changeset 14294 for trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/OnlineMaxAbsoluteErrorCalculator.cs
- Timestamp:
- 09/20/16 17:14:41 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/OnlineMaxAbsoluteErrorCalculator.cs
r14293 r14294 39 39 } 40 40 41 // private constructor used internally by the Clone() method 42 private OnlineMaxAbsoluteErrorCalculator(OnlineMaxAbsoluteErrorCalculator other) { 41 protected OnlineMaxAbsoluteErrorCalculator(OnlineMaxAbsoluteErrorCalculator other, Cloner cloner = null) { 43 42 mae = other.mae; 44 43 n = other.n; … … 105 104 var clone = cloner.GetClone(this); 106 105 if (clone == null) { 107 clone = (IDeepCloneable)this.Clone();106 clone = new OnlineMaxAbsoluteErrorCalculator(this); 108 107 cloner.RegisterClonedObject(this, clone); 109 108 }
Note: See TracChangeset
for help on using the changeset viewer.