Changeset 10770 for branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3
- Timestamp:
- 04/23/14 11:33:50 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3
- Files:
-
- 1 added
- 2 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/HeuristicLab.Problems.DataAnalysis.Transformations-3.3.csproj
r10765 r10770 44 44 <Reference Include="System" /> 45 45 <Reference Include="System.Core" /> 46 <Reference Include="System.Drawing" /> 46 47 </ItemGroup> 47 48 <ItemGroup> 49 <Compile Include="Transformation.cs" /> 48 50 <None Include="HeuristicLab.snk" /> 49 51 <None Include="Plugin.cs.frame" /> 52 <Compile Include="Interfaces\ITransformation.cs" /> 53 <Compile Include="LinearTransformation.cs" /> 50 54 <Compile Include="Plugin.cs" /> 51 55 <None Include="Properties\AssemblyInfo.cs.frame" /> 52 56 <Compile Include="Properties\AssemblyInfo.cs" /> 53 57 </ItemGroup> 58 <ItemGroup> 59 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj"> 60 <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project> 61 <Name>HeuristicLab.Collections-3.3</Name> 62 </ProjectReference> 63 <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj"> 64 <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project> 65 <Name>HeuristicLab.Common-3.3</Name> 66 </ProjectReference> 67 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 68 <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project> 69 <Name>HeuristicLab.Core-3.3</Name> 70 </ProjectReference> 71 <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj"> 72 <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project> 73 <Name>HeuristicLab.Data-3.3</Name> 74 </ProjectReference> 75 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj"> 76 <Project>{56f9106a-079f-4c61-92f6-86a84c2d84b7}</Project> 77 <Name>HeuristicLab.Parameters-3.3</Name> 78 </ProjectReference> 79 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> 80 <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project> 81 <Name>HeuristicLab.Persistence-3.3</Name> 82 </ProjectReference> 83 </ItemGroup> 84 <ItemGroup /> 54 85 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 55 86 <PropertyGroup> -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/LinearTransformation.cs
r10766 r10770 28 28 using HeuristicLab.Core; 29 29 using HeuristicLab.Data; 30 using HeuristicLab.DataPreprocessing.Transformations;31 30 using HeuristicLab.Parameters; 32 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 33 namespace HeuristicLab.DataPreprocessing.Implementations.Transformations { 32 33 namespace HeuristicLab.Problems.DataAnalysis.Transformations { 34 34 [Item("LinearTransformation", "Represents a linear transformation with multiplication and addition.")] 35 35 public class LinearTransformation : Transformation<double> { -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/Plugin.cs.frame
r10765 r10770 28 28 [PluginDependency("HeuristicLab.Collections", "3.3")] 29 29 [PluginDependency("HeuristicLab.Common", "3.3")] 30 [PluginDependency("HeuristicLab.Core", "3.3")] 31 [PluginDependency("HeuristicLab.Data", "3.3")] 32 [PluginDependency("HeuristicLab.Parameters", "3.3")] 33 [PluginDependency("HeuristicLab.Persistence", "3.3")] 30 34 public class HeuristicLabProblemsDataAnalysisTransformationsPlugin : PluginBase { 31 35 } -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Transformations/3.3/Transformation.cs
r10766 r10770 27 27 using HeuristicLab.Parameters; 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 using HeuristicLab.Problems.DataAnalysis;30 29 31 namespace HeuristicLab. DataPreprocessing.Transformations {30 namespace HeuristicLab.Problems.DataAnalysis.Transformations { 32 31 [Item("Transformation", "Represents the base class for a transformation.")] 33 32 [StorableClass] … … 48 47 [StorableConstructor] 49 48 protected Transformation(bool deserializing) : base(deserializing) { } 50 protected Transformation(Transformation<T> original, Cloner cloner) : base(original, cloner) {}49 protected Transformation(Transformation<T> original, Cloner cloner) : base(original, cloner) { } 51 50 protected Transformation() { } 52 51 protected Transformation(IEnumerable<string> allowedColumns) {
Note: See TracChangeset
for help on using the changeset viewer.