Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8966


Ignore:
Timestamp:
11/28/12 12:27:01 (11 years ago)
Author:
mkommend
Message:

#1917: Reversed changes in OnlineMeanAndVarianceCalculator as this must be first discussed with gkronber and should be tracked in a separate ticket.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/OnlineMeanAndVarianceCalculator.cs

    r8965 r8966  
    7373
    7474    public void Add(double x) {
    75       if (double.IsNaN(x) || double.IsInfinity(x) || (errorState & OnlineCalculatorError.InvalidValueAdded) > 0) {
     75      if (double.IsNaN(x) || double.IsInfinity(x) || x > 1E13 || x < -1E13 || (errorState & OnlineCalculatorError.InvalidValueAdded) > 0) {
    7676        errorState = errorState | OnlineCalculatorError.InvalidValueAdded;
    7777        varianceErrorState = errorState | OnlineCalculatorError.InvalidValueAdded;
Note: See TracChangeset for help on using the changeset viewer.