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/SymbolicRegressionScaledMeanSquaredErrorEvaluator.cs

    r4034 r4068  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Drawing;
    2624using HeuristicLab.Common;
    2725using HeuristicLab.Core;
    2826using HeuristicLab.Data;
    29 using HeuristicLab.Optimization;
     27using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    3028using HeuristicLab.Parameters;
    3129using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    32 using HeuristicLab.PluginInfrastructure;
    33 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    34 using HeuristicLab.Problems.DataAnalysis;
    35 using HeuristicLab.Operators;
    3630using HeuristicLab.Problems.DataAnalysis.Evaluators;
    3731using HeuristicLab.Problems.DataAnalysis.Symbolic;
     
    7569
    7670    public static double Calculate(ISymbolicExpressionTreeInterpreter interpreter, SymbolicExpressionTree solution, double lowerEstimationLimit, double upperEstimationLimit, Dataset dataset, string targetVariable, IEnumerable<int> rows, out double beta, out double alpha) {
    77       IEnumerable<double> originalValues = dataset.GetEnumeratedVariableValues(targetVariable,rows);
     71      IEnumerable<double> originalValues = dataset.GetEnumeratedVariableValues(targetVariable, rows);
    7872      IEnumerable<double> estimatedValues = interpreter.GetSymbolicExpressionTreeValues(solution, dataset, rows);
    7973      CalculateScalingParameters(originalValues, estimatedValues, out beta, out alpha);
Note: See TracChangeset for help on using the changeset viewer.