Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/04/11 16:07:34 (14 years ago)
Author:
mkommend
Message:

#1418: Added unit tests for the Problems.DataAnalysis-3.4 project.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Tests/StatisticCalculatorsTest.cs

    r5809 r5944  
    2323using System.Collections.Generic;
    2424using System.Linq;
     25using HeuristicLab.Problems.DataAnalysis;
    2526using Microsoft.VisualStudio.TestTools.UnitTesting;
    26 using HeuristicLab.Problems.DataAnalysis;
    2727namespace HeuristicLab.Problems.DataAnalysis_3_4.Tests {
    2828
     
    103103            r2_alglib *= r2_alglib;
    104104
    105             var r2Calculator = new OnlinePearsonsRSquaredEvaluator();
     105            var r2Calculator = new OnlinePearsonsRSquaredCalculator();
    106106            for (int i = 0; i < n; i++) {
    107107              r2Calculator.Add(xs[i], ys[i]);
Note: See TracChangeset for help on using the changeset viewer.