- Timestamp:
- 03/05/14 13:46:33 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingContext.cs
r10383 r10536 79 79 80 80 private IDataAnalysisProblem SetupAlgorithm(IAlgorithm algorithm) { 81 algorithm.Name = "Cloned " + algorithm.Name;81 algorithm.Name = algorithm.Name + "(Preprocessed)"; 82 82 algorithm.Runs.Clear(); 83 83 … … 85 85 } 86 86 87 private T Export<T>(T original, Func<T, IDataAnalysisProblem> setup) where T : IItem { 87 private T Export<T>(T original, Func<T, IDataAnalysisProblem> setup) 88 where T : IItem { 88 89 var creator = new ProblemDataCreator(this); 89 90 var data = creator.CreateProblemData(); … … 93 94 var problem = setup(clone); 94 95 problem.ProblemDataParameter.ActualValue = data; 95 problem.Name = " Cloned " + problem.Name;96 problem.Name = "Preprocessed " + problem.Name; 96 97 97 98 return clone;
Note: See TracChangeset
for help on using the changeset viewer.