Free cookie consent management tool by TermsFeed Policy Generator

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

#2520 added guids to storable classes

Location:
branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/Lbfgs.cs

    r12795 r13368  
    3838  /// Limited-Memory BFGS optimization algorithm.
    3939  /// </summary>
    40   [Item("LM-BFGS", "The limited-memory BFGS (Broyden–Fletcher–Goldfarb–Shanno) optimization algorithm.")]
     40  [Item("LM-BFGS", "The limited-memory BFGS (Broydenï¿œFletcherï¿œGoldfarbï¿œShanno) optimization algorithm.")]
    4141  [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 160)]
    42   [StorableClass]
     42  [StorableClass("F1344A7B-A693-4E34-9F96-8362E7E315BD")]
    4343  public sealed class LbfgsAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent {
    4444    public override Type ProblemType {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsAnalyzer.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3232
    3333namespace HeuristicLab.Algorithms.GradientDescent {
    34   [StorableClass]
     34  [StorableClass("687D5B51-367B-45EB-A5F1-7888F238665E")]
    3535  [Item(Name = "LBFGS Analyzer", Description = "Analyzer to collect results for the LM-BFGS algorithm.")]
    3636  public sealed class LbfgsAnalyzer : SingleSuccessorOperator, IAnalyzer {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsInitializer.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3131
    3232namespace HeuristicLab.Algorithms.GradientDescent {
    33   [StorableClass]
     33  [StorableClass("3393605C-8AA5-4A4B-8F43-83966A8E60A9")]
    3434  [Item(Name = "LBFGS Initializer", Description = "Initializes the necessary data structures for the LM-BFGS algorithm.")]
    3535  public sealed class LbfgsInitializer : SingleSuccessorOperator {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsMakeStep.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2929
    3030namespace HeuristicLab.Algorithms.GradientDescent {
    31   [StorableClass]
     31  [StorableClass("FDB51DFB-9668-448C-B75E-19BA1F61DB0D")]
    3232  [Item(Name = "LBFGS MakeStep", Description = "Makes a step in the LM-BFGS optimization algorithm.")]
    3333  public sealed class LbfgsMakeStep : SingleSuccessorOperator {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsState.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2828
    2929namespace HeuristicLab.Algorithms.GradientDescent {
    30   [StorableClass]
     30  [StorableClass("465DF669-1556-4B4A-9195-E2AEA2C10CDC")]
    3131  [Item("LbfgsState", "Internal state for the limited-memory BFGS optimization algorithm.")]
    3232  public sealed class LbfgsState : Item {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.GradientDescent/3.3/LbfgsUpdateResults.cs

    r12797 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3030
    3131namespace HeuristicLab.Algorithms.GradientDescent {
    32   [StorableClass]
     32  [StorableClass("D6FA4D8C-9F48-4822-8316-30DB335C6D16")]
    3333  [Item(Name = "LBFGS UpdateResults", Description = "Sets the results (function value and gradients) for the next optimization step in the LM-BFGS algorithm.")]
    3434  public sealed class LbfgsUpdateResults : SingleSuccessorOperator {
Note: See TracChangeset for help on using the changeset viewer.