Changeset 5657 for branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/OnlineEvaluators
- Timestamp:
- 03/10/11 12:37:11 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/OnlineEvaluators/OnlineAccuracyEvaluator.cs
r5649 r5657 34 34 throw new InvalidOperationException("No elements"); 35 35 else 36 return correctlyClassified / n;36 return correctlyClassified / (double)n; 37 37 } 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.