Changeset 2212 for branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators
- Timestamp:
- 07/30/09 10:47:00 (15 years ago)
- Location:
- branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/CoefficientOfDeterminationEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 23 using HeuristicLab.Modeling; 30 24 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/EarlyStoppingMeanSquaredErrorEvaluator.cs
r2034 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 24 30 25 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/GPEvaluatorBase.cs
r2210 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 24 using HeuristicLab.DataAnalysis; 30 25 using HeuristicLab.GP.Interfaces; -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/MeanAbsolutePercentageErrorEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 23 using HeuristicLab.Modeling; 30 using HeuristicLab.DataAnalysis;31 24 32 25 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/MeanAbsolutePercentageOfRangeErrorEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 23 using HeuristicLab.Modeling; 30 using HeuristicLab.DataAnalysis;31 24 32 25 namespace HeuristicLab.GP.StructureIdentification { -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/MeanSquaredErrorEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 using HeuristicLab.DataAnalysis;30 23 using HeuristicLab.Modeling; 31 24 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/SimpleEvaluator.cs
r2041 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 24 using HeuristicLab.DataAnalysis; 30 25 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/SimpleGPEvaluatorBase.cs
r1894 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 24 using HeuristicLab.DataAnalysis; 30 25 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/UncertainMeanSquaredErrorEvaluator.cs
r2034 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 using HeuristicLab.Core; 27 24 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 using HeuristicLab.DataAnalysis;30 25 using HeuristicLab.Random; 31 26 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/VariableEvaluationImpactCalculator.cs
r2210 r2212 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 using System.Xml;26 22 using HeuristicLab.Core; 27 23 using HeuristicLab.Data; 28 24 using HeuristicLab.DataAnalysis; 29 using System.Linq;30 25 using HeuristicLab.GP.Interfaces; 31 26 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/VariableQualityImpactCalculator.cs
r2210 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Text;25 using System.Xml;26 23 using HeuristicLab.Core; 27 24 using HeuristicLab.Data; 28 25 using HeuristicLab.DataAnalysis; 29 using System.Linq;30 26 using HeuristicLab.GP.Interfaces; 31 27 -
branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Evaluators/VarianceAccountedForEvaluator.cs
r2136 r2212 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using HeuristicLab.Core;27 using HeuristicLab.Data;28 using HeuristicLab.Operators;29 using HeuristicLab.DataAnalysis;30 23 using HeuristicLab.Modeling; 31 24
Note: See TracChangeset
for help on using the changeset viewer.