- Timestamp:
- 04/23/14 12:38:07 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10740 r10772 28 28 using HeuristicLab.Data; 29 29 using HeuristicLab.Problems.DataAnalysis; 30 using HeuristicLab.Problems.DataAnalysis.Transformations; 30 31 31 32 namespace HeuristicLab.DataPreprocessing { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs
r10614 r10772 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Problems.DataAnalysis; 26 using HeuristicLab.Problems.DataAnalysis.Transformations; 25 27 26 28 namespace HeuristicLab.DataPreprocessing { … … 28 30 public class TransformationContent : Item, IViewShortcut { 29 31 30 private readonly ITransformationLogic transformationLogic; 31 public TransformationContent(ITransformationLogic theTransformationLogic) { 32 transformationLogic = theTransformationLogic; 32 public IPreprocessingData Data { get; private set; } 33 34 public ICheckedItemCollection<ITransformation> CheckedTransformationCollection { get; private set; } 35 36 public TransformationContent(IPreprocessingData data) { 37 Data = data; 38 CheckedTransformationCollection = new CheckedItemCollection<ITransformation>(); 33 39 } 34 40 35 public ITransformationLogic TransformationLogic { 36 get { 37 return transformationLogic; 38 } 39 } 40 41 public TransformationContent(TransformationContent content, Cloner cloner) 42 : base(content, cloner) { 43 41 public TransformationContent(TransformationContent original, Cloner cloner) 42 : base(original, cloner) { 43 Data = original.Data; 44 CheckedTransformationCollection = new CheckedItemCollection<ITransformation>(original.CheckedTransformationCollection); 44 45 } 45 46 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10695 r10772 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Problems.DataAnalysis; 27 using HeuristicLab.Problems.DataAnalysis.Transformations; 27 28 28 29 namespace HeuristicLab.DataPreprocessing { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/ProblemDataCreator.cs
r10695 r10772 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Problems.DataAnalysis; 25 using HeuristicLab.Problems.DataAnalysis.Transformations; 25 26 26 27 namespace HeuristicLab.DataPreprocessing { … … 36 37 private IEnumerable<string> InputVariables { get { return context.Data.VariableNames; } } 37 38 private IEnumerable<ITransformation> Transformations { get { return context.Data.Transformations; } } 38 39 39 40 40 public ProblemDataCreator(IPreprocessingContext context) { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Properties/AssemblyInfo.cs.frame
r10095 r10772 32 32 // You can specify all the values or you can default the Build and Revision Numbers 33 33 // by using the '*' as shown below: 34 // [assembly: AssemblyVersion("1.0.*")]35 34 [assembly: AssemblyVersion("3.3.9.0")] 36 35 [assembly: AssemblyFileVersion("3.3.9.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.