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/Symbolic/Analyzers/SymbolicRegressionModelQualityCalculator.cs

    r3710 r4068  
    2020#endregion
    2121
    22 using System.Linq;
    23 using HeuristicLab.Common;
    2422using HeuristicLab.Core;
    2523using HeuristicLab.Data;
     24using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2625using HeuristicLab.Operators;
    27 using HeuristicLab.Optimization;
    2826using HeuristicLab.Parameters;
    2927using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    31 using HeuristicLab.Problems.DataAnalysis.Regression.Symbolic;
     28using HeuristicLab.Problems.DataAnalysis.Evaluators;
    3229using HeuristicLab.Problems.DataAnalysis.Symbolic;
    33 using System.Collections.Generic;
    34 using HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols;
    35 using HeuristicLab.Problems.DataAnalysis;
    36 using HeuristicLab.Analysis;
    37 using HeuristicLab.Problems.DataAnalysis.Evaluators;
    3830
    3931namespace HeuristicLab.Problems.DataAnalysis.Regression.Symbolic.Analyzers {
     
    10294      Parameters.Add(new ValueLookupParameter<DoubleValue>(RSQuaredQualityParameterName, "The R² correlation coefficient of the output of the model and the original target values."));
    10395      Parameters.Add(new ValueLookupParameter<DoubleValue>(RelativeErrorQualityParameterName, "The average relative percentage error of the output of the model."));
    104      
     96
    10597      #region operator initialization
    10698      SimpleSymbolicRegressionEvaluator simpleEvaluator = new SimpleSymbolicRegressionEvaluator();
Note: See TracChangeset for help on using the changeset viewer.