Changeset 11114 for trunk/sources/HeuristicLab.DataPreprocessing/3.4
- Timestamp:
- 07/07/14 15:33:56 (9 years ago)
- Location:
- trunk/sources
- Files:
-
- 6 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.DataPreprocessing/3.4/HeuristicLab.DataPreprocessing-3.4.csproj
r11068 r11114 149 149 <Private>False</Private> 150 150 </ProjectReference> 151 <ProjectReference Include="..\..\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding\3.4\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj">152 <Project>{06d4a186-9319-48a0-bade-a2058d462eea}</Project>153 <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4</Name>154 <Private>False</Private>155 </ProjectReference>156 151 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj"> 157 152 <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project> … … 159 154 <Private>False</Private> 160 155 </ProjectReference> 161 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">162 <Project>{56f9106a-079f-4c61-92f6-86a84c2d84b7}</Project>163 <Name>HeuristicLab.Parameters-3.3</Name>164 <Private>False</Private>165 </ProjectReference>166 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">167 <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>168 <Name>HeuristicLab.Persistence-3.3</Name>169 <Private>False</Private>170 </ProjectReference>171 156 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj"> 172 157 <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project> 173 158 <Name>HeuristicLab.PluginInfrastructure-3.3</Name> 174 <Private>False</Private>175 </ProjectReference>176 <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj">177 <Project>{3d28463f-ec96-4d82-afee-38be91a0ca00}</Project>178 <Name>HeuristicLab.Problems.DataAnalysis.Symbolic-3.4</Name>179 159 <Private>False</Private> 180 160 </ProjectReference> -
trunk/sources/HeuristicLab.DataPreprocessing/3.4/Implementations/PreprocessingContext.cs
r10990 r11114 20 20 #endregion 21 21 22 using System;23 22 using HeuristicLab.Common; 24 23 using HeuristicLab.Core; 24 using HeuristicLab.DataPreprocessing.Implementations; 25 using HeuristicLab.DataPreprocessing.Interfaces; 25 26 using HeuristicLab.Optimization; 26 27 using HeuristicLab.Problems.DataAnalysis; 27 using HeuristicLab.DataPreprocessing.Implementations;28 using HeuristicLab.DataPreprocessing.Interfaces;29 28 30 29 namespace HeuristicLab.DataPreprocessing { … … 53 52 } 54 53 55 pr ivatePreprocessingContext(PreprocessingContext original, Cloner cloner)54 protected PreprocessingContext(PreprocessingContext original, Cloner cloner) 56 55 : base(original, cloner) { 57 56 Data = cloner.Clone(original.Data); -
trunk/sources/HeuristicLab.DataPreprocessing/3.4/Implementations/PreprocessingDataTable.cs
r10847 r11114 1 1 using System; 2 using System.Collections.Generic;3 using System.Linq;4 using System.Text;5 2 using HeuristicLab.Analysis; 6 using HeuristicLab.Co llections;3 using HeuristicLab.Common; 7 4 using HeuristicLab.Core; 8 5 9 6 namespace HeuristicLab.DataPreprocessing.Implementations { 10 11 7 [Item("PreprossingDataTable", "A table of data values.")] 12 8 public class PreprocessingDataTable : DataTable { … … 14 10 public PreprocessingDataTable() 15 11 : base() { 16 12 SelectedRows = new NamedItemCollection<DataRow>(); 17 13 } 18 14 public PreprocessingDataTable(string name) 19 15 : base(name) { 20 SelectedRows = new NamedItemCollection<DataRow>(); 16 SelectedRows = new NamedItemCollection<DataRow>(); 17 } 18 19 protected PreprocessingDataTable(PreprocessingDataTable original, Cloner cloner) 20 : base(original, cloner) { 21 this.selectedRows = cloner.Clone(original.selectedRows); 22 } 23 public override IDeepCloneable Clone(Cloner cloner) { 24 return new PreprocessingDataTable(this, cloner); 21 25 } 22 26 … … 27 31 if (selectedRows != null) throw new InvalidOperationException("Rows already set"); 28 32 selectedRows = value; 29 //if (selectedRows != null) RegisterSelectedRowEvents();30 33 } 31 34 } -
trunk/sources/HeuristicLab.DataPreprocessing/3.4/Implementations/TransactionalPreprocessingData.cs
r11098 r11114 31 31 32 32 namespace HeuristicLab.DataPreprocessing { 33 34 33 [Item("PreprocessingData", "Represents data used for preprocessing.")] 35 34 public class TransactionalPreprocessingData : PreprocessingData, ITransactionalPreprocessingData { … … 59 58 } 60 59 61 pr ivateTransactionalPreprocessingData(TransactionalPreprocessingData original, Cloner cloner)60 protected TransactionalPreprocessingData(TransactionalPreprocessingData original, Cloner cloner) 62 61 : base(original, cloner) { 63 62 } -
trunk/sources/HeuristicLab.DataPreprocessing/3.4/Plugin.cs.frame
r11068 r11114 34 34 [PluginDependency("HeuristicLab.Collections", "3.3")] 35 35 [PluginDependency("HeuristicLab.Data","3.3")] 36 [PluginDependency("HeuristicLab.Data.Views","3.3")]37 [PluginDependency("HeuristicLab.Persistence", "3.3")]38 36 [PluginDependency("HeuristicLab.Optimization", "3.3")] 39 [PluginDependency("HeuristicLab.MainForm", "3.3")]40 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]41 37 [PluginDependency("HeuristicLab.Problems.DataAnalysis","3.4")] 42 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Views","3.4")]43 [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding", "3.4")]44 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")]45 [PluginDependency("HeuristicLab.Parameters","3.3")]46 [PluginDependency("HeuristicLab.Persistence","3.3")]47 38 public class HeuristicLabDataPreprocessingPlugin : PluginBase { 48 39 }
Note: See TracChangeset
for help on using the changeset viewer.