- Timestamp:
- 04/23/14 15:56:31 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingContext.cs
r10783 r10786 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;26 25 using HeuristicLab.Optimization; 27 26 using HeuristicLab.Problems.DataAnalysis; 28 using HeuristicLab.Problems.DataAnalysis.Symbolic;29 using Variable = HeuristicLab.Problems.DataAnalysis.Symbolic.Variable;30 27 using HeuristicLab.DataPreprocessing.Implementations; 31 28 using HeuristicLab.DataPreprocessing.Interfaces; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10783 r10786 52 52 public PreprocessingData(IDataAnalysisProblemData problemData) 53 53 : base() { 54 Name = "-"; 54 Name = "Preprocessing Data"; 55 56 transformations = new List<ITransformation>(); 55 57 56 58 variableNames = new List<string>(problemData.Dataset.VariableNames);
Note: See TracChangeset
for help on using the changeset viewer.