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.MultiVariate.Regression/3.3/Symbolic/Evaluators/SymbolicVectorRegressionScaledNormalizedMseEvaluator.cs

    r4056 r4068  
    2020#endregion
    2121
    22 using System;
     22using System.Collections.Generic;
    2323using System.Linq;
    24 using HeuristicLab.Common;
    2524using HeuristicLab.Core;
    2625using HeuristicLab.Data;
     26using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
     27using HeuristicLab.Parameters;
    2728using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 using HeuristicLab.Problems.DataAnalysis.SupportVectorMachine;
    29 using HeuristicLab.Problems.DataAnalysis;
    30 using HeuristicLab.Problems.DataAnalysis.Evaluators;
    31 using HeuristicLab.Parameters;
    32 using HeuristicLab.Optimization;
    33 using HeuristicLab.Operators;
     29using HeuristicLab.Problems.DataAnalysis.MultiVariate.Regression.Symbolic.Interfaces;
    3430using HeuristicLab.Problems.DataAnalysis.Regression.Symbolic;
    35 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    3631using HeuristicLab.Problems.DataAnalysis.Symbolic;
    37 using System.Collections.Generic;
    38 using HeuristicLab.Problems.DataAnalysis.Regression;
    39 using HeuristicLab.Problems.DataAnalysis.MultiVariate.Regression.Symbolic.Interfaces;
    4032
    4133namespace HeuristicLab.Problems.DataAnalysis.MultiVariate.Regression.Symbolic.Evaluators {
     
    7668      // use only the i-th vector component
    7769      List<SymbolicExpressionTreeNode> componentBranches = new List<SymbolicExpressionTreeNode>(tree.Root.SubTrees[0].SubTrees);
    78       while (tree.Root.SubTrees[0].SubTrees.Count > 0) tree.Root.SubTrees[0].RemoveSubTree(0); 
     70      while (tree.Root.SubTrees[0].SubTrees.Count > 0) tree.Root.SubTrees[0].RemoveSubTree(0);
    7971      for (int i = 0; i < targetVariablesList.Count; i++) {
    8072        tree.Root.SubTrees[0].AddSubTree(componentBranches[i]);
Note: See TracChangeset for help on using the changeset viewer.