Changeset 10671 for branches/DataPreprocessing
- Timestamp:
- 03/26/14 16:09:03 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10669 r10671 79 79 <Compile Include="Implementations\Filter\IFilter.cs" /> 80 80 <Compile Include="Implementations\ManipulationLogic.cs" /> 81 <Compile Include="Implementations\Transformations\LinearTransformation.cs" /> 81 82 <Compile Include="Implementations\Transformations\Transformation.cs" /> 82 83 <Compile Include="Interfaces\IPreprocessingData.cs" /> … … 150 151 <Name>HeuristicLab.Optimization-3.3</Name> 151 152 </ProjectReference> 153 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj"> 154 <Project>{56f9106a-079f-4c61-92f6-86a84c2d84b7}</Project> 155 <Name>HeuristicLab.Parameters-3.3</Name> 156 </ProjectReference> 152 157 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 153 158 <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Transformations/Transformation.cs
r10669 r10671 28 28 public abstract class Transformation : ParameterizedNamedItem { 29 29 30 protected new ParameterCollection Parameters { 31 get { return base.Parameters; } 32 } 33 30 34 protected ITransactionalPreprocessingData PreprocessingData { get; private set; } 31 35 32 36 protected string Column { get; private set; } 37 38 protected Transformation() { 39 } 33 40 34 41 protected Transformation(ITransactionalPreprocessingData preprocessingData, string column) { … … 39 46 protected Transformation(Transformation original, Cloner cloner) 40 47 : base(original, cloner) { 48 PreprocessingData = (ITransactionalPreprocessingData)original.PreprocessingData.Clone(); 49 Column = original.Column; 41 50 } 42 51 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Plugin.cs.frame
r10664 r10671 42 42 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Views","3.4")] 43 43 [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding","3.4")] 44 [PluginDependency("HeuristicLab.Parameters","3.4")] 44 45 public class HeuristicLabDataPreprocessingPlugin : PluginBase { 45 46 }
Note: See TracChangeset
for help on using the changeset viewer.