Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 17:08:13 (8 years ago)
Author:
ascheibe
Message:

#2520 added guids to storable classes

Location:
branches/PersistenceOverhaul/HeuristicLab.Problems.ParameterOptimization/3.3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ParameterOptimization/3.3/BestSolutionAnalyzer.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3232namespace HeuristicLab.Problems.ParameterOptimization {
    3333  [Item("BestSolutionAnalyzer", "Tracks the best parameter vector solution of the current algorithm run.")]
    34   [StorableClass]
     34  [StorableClass("8BA2D1B7-D35C-445A-9ADE-2D2735F971EB")]
    3535  public class BestSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer {
    3636    private const string MaximizationParameterName = "Maximization";
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ParameterOptimization/3.3/BestSolutionsAnalyzer.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3333namespace HeuristicLab.Problems.ParameterOptimization {
    3434  [Item("BestSolutionsAnalyzer", "Tracks the best parameter vector solutions of the current algorithm run.")]
    35   [StorableClass]
     35  [StorableClass("D9D7710F-38CD-4B46-8BE9-6482B3830536")]
    3636  public class BestSolutionsAnalyzer : SingleSuccessorOperator, IAnalyzer {
    3737    private const string MaximizationParameterName = "Maximization";
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ParameterOptimization/3.3/ParameterOptimizationProblem.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3333namespace HeuristicLab.Problems.ParameterOptimization {
    3434  [Item("Parameter Optimization Problem", "A base class for other problems for the optimization of a parameter vector.")]
    35   [StorableClass]
     35  [StorableClass("966B9A10-DB66-4D1F-A034-BB010F7620AC")]
    3636  public abstract class ParameterOptimizationProblem : SingleObjectiveHeuristicOptimizationProblem<IParameterVectorEvaluator, IRealVectorCreator>, IStorableContent {
    3737    public string Filename { get; set; }
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ParameterOptimization/3.3/ParameterVectorEvaluator.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3030namespace HeuristicLab.Problems.ParameterOptimization {
    3131  [Item("ParameterVectorEvaluator", "An base class for other parameter vector evaluators.")]
    32   [StorableClass]
     32  [StorableClass("9E391719-65DB-452B-8897-1EB1C63AD9EA")]
    3333  public abstract class ParameterVectorEvaluator : SingleSuccessorOperator, IParameterVectorEvaluator {
    3434    private const string QualityParameterName = "Quality";
Note: See TracChangeset for help on using the changeset viewer.