Changeset 16573 for addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart
- Timestamp:
- 01/28/19 18:10:11 (6 years ago)
- Location:
- addons/HeuristicLab.FitnessLandscapeAnalysis
- Files:
-
- 10 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/BoxChart/BitmapItem.cs
r7128 r16573 5 5 using HeuristicLab.Core; 6 6 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 7 using HEAL.Attic; 7 8 8 9 namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts { 9 10 10 [Storable Class]11 [StorableType("58401951-FA4A-4D64-87DD-0B42DC00991F")] 11 12 public class BitmapItem : Item { 12 13 … … 33 34 34 35 [StorableConstructor] 35 protected BitmapItem( bool deserializing) : base(deserializing) { }36 protected BitmapItem(StorableConstructorFlag _) : base(_) { } 36 37 protected BitmapItem(BitmapItem original, Cloner cloner) : base(original, cloner) { 37 38 Image = (Bitmap)original.Image.Clone(); -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/BoxChartCreator.cs
r11661 r16573 13 13 using HeuristicLab.Parameters; 14 14 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 15 using HEAL.Attic; 15 16 16 17 namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts { 17 18 18 19 [Item("Box Chart Creator", "Visualizes essential run information by creating an overview chart.")] 19 [Storable Class]20 [StorableType("C6897D24-4E02-411E-B92D-43CC055D7C9C")] 20 21 public class BoxChartCreator : ParameterizedNamedItem, IRunCollectionModifier { 21 22 … … 58 59 #region Construction & Cloning 59 60 [StorableConstructor] 60 protected BoxChartCreator( bool deserializing) : base(deserializing) { }61 protected BoxChartCreator(StorableConstructorFlag _) : base(_) { } 61 62 protected BoxChartCreator(BoxChartCreator original, Cloner cloner) 62 63 : base(original, cloner) { -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/ColorValue.cs
r7202 r16573 9 9 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 10 10 using HeuristicLab.Common.Resources; 11 using HEAL.Attic; 11 12 12 13 namespace HeuristicLab.Analysis.FitnessLandscape.BoxChart { 13 14 14 15 [Item("Color", "A color")] 15 [Storable Class]16 [StorableType("E4C70605-7105-4ADC-90BC-A0C3994B061B")] 16 17 public class ColorValue : NamedItem { 17 18 … … 135 136 #region Construction & Cloning 136 137 [StorableConstructor] 137 protected ColorValue( bool deserializing) : base(deserializing) { }138 protected ColorValue(StorableConstructorFlag _) : base(_) { } 138 139 protected ColorValue(ColorValue original, Cloner cloner) : base (original, cloner) { 139 140 h = original.h; -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/DiscreteValueBoxChartElementGenerator.cs
r7128 r16573 12 12 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 13 13 using HeuristicLab.Analysis.FitnessLandscape.BoxChart; 14 using HEAL.Attic; 14 15 15 16 namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts { 16 17 17 [Storable Class]18 [StorableType("70DD55A7-03E3-495E-8D7A-1FA3FB0801B0")] 18 19 public class DiscreteValueBoxChartElementGenerator : EmptyBoxChartElementGenerator { 19 20 … … 39 40 40 41 [StorableConstructor] 41 protected DiscreteValueBoxChartElementGenerator( bool deserializing) : base(deserializing) { }42 protected DiscreteValueBoxChartElementGenerator(StorableConstructorFlag _) : base(_) { } 42 43 protected DiscreteValueBoxChartElementGenerator(DiscreteValueBoxChartElementGenerator original, Cloner cloner) 43 44 : base(original, cloner) { -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/EmptyBoxChartElementGenerator.cs
r7210 r16573 11 11 using HeuristicLab.Parameters; 12 12 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 13 using HEAL.Attic; 13 14 14 15 namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts { 15 16 16 [Storable Class]17 [StorableType("A3B05023-AFF2-4550-A78C-F0513F308316")] 17 18 public class EmptyBoxChartElementGenerator : ParameterizedNamedItem, IBoxChartElementGenerator { 18 19 … … 49 50 #region Construction & Cloning 50 51 [StorableConstructor] 51 protected EmptyBoxChartElementGenerator( bool deserializing) : base(deserializing) { }52 protected EmptyBoxChartElementGenerator(StorableConstructorFlag _) : base(_) { } 52 53 protected EmptyBoxChartElementGenerator(EmptyBoxChartElementGenerator original, Cloner cloner) : base(original, cloner) { 53 54 RegisterEvents(); -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/ResultNamesCollector.cs
r7211 r16573 8 8 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 9 9 using HeuristicLab.Data; 10 using HEAL.Attic; 10 11 11 12 namespace HeuristicLab.Analysis.FitnessLandscape.BoxChart { 12 13 [Item("Result Names Collector", "Collects all occuring names of parameters and results in the currenly visible runs")] 13 [Storable Class]14 [StorableType("90ADFC82-D508-4532-8F5E-690EB4F3F60F")] 14 15 public class ResultNamesCollector : ParameterizedNamedItem, IRunCollectionModifier { 15 16 … … 17 18 18 19 [StorableConstructor] 19 protected ResultNamesCollector( bool deserializing) : base(deserializing) {}20 protected ResultNamesCollector(StorableConstructorFlag _) : base(_) { } 20 21 21 22 protected ResultNamesCollector(ResultNamesCollector original, Cloner cloner) : base(original, cloner) {} -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/RunCollectionMultiDiscretizer.cs
r7212 r16573 9 9 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 10 10 using HeuristicLab.Data; 11 using HEAL.Attic; 11 12 12 13 namespace HeuristicLab.Optimization.RunModification { … … 15 16 "Creates several levels from the distribution of several results accross a run collection and " + 16 17 "assigns a discretized value. Non-existing numbers as well as NaN and infinities are excluded from the caluclation.")] 17 [Storable Class]18 [StorableType("74B90692-F3F2-4E0B-AA17-C3CDD710D009")] 18 19 public class RunCollectionMultiDiscretizer : ParameterizedNamedItem, IRunCollectionModifier { 19 20 … … 47 48 #region Construction & Cloning 48 49 [StorableConstructor] 49 protected RunCollectionMultiDiscretizer( bool deserializing) : base(deserializing) { }50 protected RunCollectionMultiDiscretizer(StorableConstructorFlag _) : base(_) { } 50 51 protected RunCollectionMultiDiscretizer(RunCollectionMultiDiscretizer original, Cloner cloner) : base(original, cloner) { } 51 52 public RunCollectionMultiDiscretizer() { -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/StringConstantBoxChartElementGenerator.cs
r7128 r16573 11 11 using HeuristicLab.Parameters; 12 12 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 13 using HEAL.Attic; 13 14 14 15 namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts { 15 16 16 [Storable Class]17 [StorableType("29AED0E8-1190-4DFC-92FC-0AC69FE4DBC1")] 17 18 public class StringConstantBoxChartElementGenerator : EmptyBoxChartElementGenerator { 18 19 … … 29 30 #region Construction & Cloning 30 31 [StorableConstructor] 31 protected StringConstantBoxChartElementGenerator( bool deserializing) : base(deserializing) { }32 protected StringConstantBoxChartElementGenerator(StorableConstructorFlag _) : base(_) { } 32 33 protected StringConstantBoxChartElementGenerator(StringConstantBoxChartElementGenerator original, Cloner cloner) : base(original, cloner) { 33 34 RegisterEvents(); -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/StringValueBoxChartElementGenerator.cs
r7128 r16573 11 11 using HeuristicLab.Parameters; 12 12 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 13 using HEAL.Attic; 13 14 14 15 namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts { 15 16 16 [Storable Class]17 [StorableType("E04F26F6-E8CF-4EF1-96AC-B3FFF38E4ACE")] 17 18 public class StringValueBoxChartElementGenerator : EmptyBoxChartElementGenerator { 18 19 … … 30 31 31 32 [StorableConstructor] 32 protected StringValueBoxChartElementGenerator( bool deserializing) : base(deserializing) { }33 protected StringValueBoxChartElementGenerator(StorableConstructorFlag _) : base(_) { } 33 34 protected StringValueBoxChartElementGenerator(StringValueBoxChartElementGenerator original, Cloner cloner) : base(original, cloner) { 34 35 RegisterEvents();
Note: See TracChangeset
for help on using the changeset viewer.