Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/LinearRegression/LinearRegressionUtil.cs

    r3848 r4068  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423using System.Linq;
    25 using System.Text;
    2624
    2725namespace HeuristicLab.Problems.DataAnalysis.Regression.LinearRegression {
     
    3028      List<int> allowedRows = CalculateAllowedRows(dataset, targetVariable, allowedInputVariables, start, end);
    3129
    32       double[,] matrix = new double[allowedRows.Count, allowedInputVariables.Count() +1];
     30      double[,] matrix = new double[allowedRows.Count, allowedInputVariables.Count() + 1];
    3331      for (int row = 0; row < allowedRows.Count; row++) {
    3432        int col = 0;
Note: See TracChangeset for help on using the changeset viewer.