Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3/BestSolutionAnalyzer.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 32 32 namespace HeuristicLab.Problems.ParameterOptimization { 33 33 [Item("BestSolutionAnalyzer", "Tracks the best parameter vector solution of the current algorithm run.")] 34 [Storable Class]34 [StorableType("A39363D6-8ACE-44AF-99E1-643928DCA6B9")] 35 35 public class BestSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer { 36 36 private const string MaximizationParameterName = "Maximization"; … … 71 71 72 72 [StorableConstructor] 73 protected BestSolutionAnalyzer( bool deserializing) : base(deserializing) { }73 protected BestSolutionAnalyzer(StorableConstructorFlag _) : base(_) { } 74 74 protected BestSolutionAnalyzer(BestSolutionAnalyzer original, Cloner cloner) 75 75 : base(original, cloner) { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3/BestSolutionsAnalyzer.cs
r16453 r16462 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Fossil; 32 32 33 33 namespace HeuristicLab.Problems.ParameterOptimization { 34 34 [Item("BestSolutionsAnalyzer", "Tracks the best parameter vector solutions of the current algorithm run.")] 35 [Storable Class]35 [StorableType("4882160E-6022-4AFC-AD84-9D7D7FF55562")] 36 36 public class BestSolutionsAnalyzer : SingleSuccessorOperator, IAnalyzer { 37 37 private const string MaximizationParameterName = "Maximization"; … … 76 76 77 77 [StorableConstructor] 78 protected BestSolutionsAnalyzer( bool deserializing) : base(deserializing) { }78 protected BestSolutionsAnalyzer(StorableConstructorFlag _) : base(_) { } 79 79 protected BestSolutionsAnalyzer(BestSolutionsAnalyzer original, Cloner cloner) 80 80 : base(original, cloner) { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3/HeuristicLab.Problems.ParameterOptimization-3.3.csproj
r16454 r16462 83 83 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 84 84 </Reference> 85 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">85 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 86 86 <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath> 87 87 </Reference> -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3/ParameterOptimizationProblem.cs
r16453 r16462 30 30 using HeuristicLab.Optimization.Operators; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Fossil; 33 33 using HeuristicLab.PluginInfrastructure; 34 34 35 35 namespace HeuristicLab.Problems.ParameterOptimization { 36 36 [Item("Parameter Optimization Problem", "A base class for other problems for the optimization of a parameter vector.")] 37 [Storable Class]37 [StorableType("B1F529FE-483C-4EF2-9306-2F6A0833EEAC")] 38 38 public abstract class ParameterOptimizationProblem : SingleObjectiveHeuristicOptimizationProblem<IParameterVectorEvaluator, IRealVectorCreator>, IStorableContent { 39 39 public string Filename { get; set; } … … 79 79 80 80 [StorableConstructor] 81 protected ParameterOptimizationProblem( bool deserializing) : base(deserializing) { }81 protected ParameterOptimizationProblem(StorableConstructorFlag _) : base(_) { } 82 82 protected ParameterOptimizationProblem(ParameterOptimizationProblem original, Cloner cloner) 83 83 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.ParameterOptimization/3.3/ParameterVectorEvaluator.cs
r16453 r16462 26 26 using HeuristicLab.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 namespace HeuristicLab.Problems.ParameterOptimization { 31 31 [Item("ParameterVectorEvaluator", "An base class for other parameter vector evaluators.")] 32 [Storable Class]32 [StorableType("4AE154F0-068C-4CC0-873D-22BE3B7CACC9")] 33 33 public abstract class ParameterVectorEvaluator : SingleSuccessorOperator, IParameterVectorEvaluator { 34 34 private const string QualityParameterName = "Quality"; … … 54 54 55 55 [StorableConstructor] 56 protected ParameterVectorEvaluator( bool deserializing) : base(deserializing) { }56 protected ParameterVectorEvaluator(StorableConstructorFlag _) : base(_) { } 57 57 protected ParameterVectorEvaluator(ParameterVectorEvaluator original, Cloner cloner) 58 58 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.