Changeset 16573 for addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DataTables
- Timestamp:
- 01/28/19 18:10:11 (6 years ago)
- Location:
- addons/HeuristicLab.FitnessLandscapeAnalysis
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.FitnessLandscapeAnalysis
- Property svn:ignore
-
old new 3 3 *.user 4 4 *.suo 5 packages
-
- Property svn:ignore
-
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DataTables/AutoCorrelationTable.cs
r7128 r16573 3 3 using HeuristicLab.Core; 4 4 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 5 using HEAL.Attic; 6 5 7 namespace HeuristicLab.Analysis.FitnessLandscape.DataTables { 6 8 7 9 [Item("AutoCorrelationTable", "DataTable that contains a series with the auto correlation function")] 8 [Storable Class]10 [StorableType("FD034211-02CD-418F-B45C-D6C35F8C0651")] 9 11 public class AutoCorrelationTable : DataTable { 10 12 … … 12 14 13 15 [StorableConstructor] 14 protected AutoCorrelationTable( bool deserializing) : base(deserializing) { }16 protected AutoCorrelationTable(StorableConstructorFlag _) : base(_) { } 15 17 protected AutoCorrelationTable(AutoCorrelationTable original, Cloner cloner) : base(original, cloner) { } 16 18 public AutoCorrelationTable() : base() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DataTables/InformationAnalysisTable.cs
r7128 r16573 3 3 using HeuristicLab.Core; 4 4 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 5 using HEAL.Attic; 6 5 7 namespace HeuristicLab.Analysis.FitnessLandscape.DataTables { 6 8 7 9 [Item("InformationAnalysisTable", "DataTable that contains series with results of an information analysis")] 8 [Storable Class]10 [StorableType("6E9BB524-0ECA-4796-AB6D-4D6B4A083FB8")] 9 11 public class InformationAnalysisTable : DataTable { 10 12 … … 12 14 13 15 [StorableConstructor] 14 protected InformationAnalysisTable( bool deserializing) : base(deserializing) { }16 protected InformationAnalysisTable(StorableConstructorFlag _) : base(_) { } 15 17 protected InformationAnalysisTable(InformationAnalysisTable original, Cloner cloner) : base(original, cloner) { } 16 18 public InformationAnalysisTable() : base() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DataTables/InformationStabilityTable.cs
r7128 r16573 3 3 using HeuristicLab.Core; 4 4 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 5 using HEAL.Attic; 6 5 7 namespace HeuristicLab.Analysis.FitnessLandscape.DataTables { 6 8 7 9 [Item("InformationStabiliyTable", "DataTable that contains a series with the development of information stability over time.")] 8 [Storable Class]10 [StorableType("004EF230-DB82-413F-B6B0-8FB68C3901BB")] 9 11 public class InformationStabilityTable : DataTable { 10 12 … … 12 14 13 15 [StorableConstructor] 14 protected InformationStabilityTable( bool deserializing) : base(deserializing) { }16 protected InformationStabilityTable(StorableConstructorFlag _) : base(_) { } 15 17 protected InformationStabilityTable(InformationStabilityTable original, Cloner cloner) : base(original, cloner) { } 16 18 public InformationStabilityTable() : base() { } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DataTables/QualityTrailSummaryTable.cs
r7128 r16573 3 3 using HeuristicLab.Core; 4 4 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 5 using HEAL.Attic; 6 5 7 namespace HeuristicLab.Analysis.FitnessLandscape.DataTables { 6 8 7 9 [Item("QualityTrailSummaryTable", "DataTable that contains a compact description of the quality trail.")] 8 [Storable Class]10 [StorableType("CF7B9594-9A6E-4756-987E-66019366586A")] 9 11 public class QualityTrailSummaryTable : DataTable { 10 12 … … 12 14 13 15 [StorableConstructor] 14 protected QualityTrailSummaryTable( bool deserializing) : base(deserializing) { }16 protected QualityTrailSummaryTable(StorableConstructorFlag _) : base(_) { } 15 17 protected QualityTrailSummaryTable(QualityTrailSummaryTable original, Cloner cloner) : base(original, cloner) { } 16 18 public QualityTrailSummaryTable() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.