Changeset 6961 for trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/OnlinePearsonsRSquaredCalculator.cs
- Timestamp:
- 11/08/11 10:13:21 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/OnlinePearsonsRSquaredCalculator.cs
r5945 r6961 74 74 // always move forward both enumerators (do not use short-circuit evaluation!) 75 75 while (firstEnumerator.MoveNext() & secondEnumerator.MoveNext()) { 76 double original = firstEnumerator.Current; 76 77 double estimated = secondEnumerator.Current; 77 double original = firstEnumerator.Current;78 78 rSquaredCalculator.Add(original, estimated); 79 79 if (rSquaredCalculator.ErrorState != OnlineCalculatorError.None) break;
Note: See TracChangeset
for help on using the changeset viewer.