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.Problems.ExternalEvaluation.GP/3.5
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation.GP/3.5/ExternalEvaluationExpressionGrammar.cs

    r12012 r13368  
    2828
    2929namespace HeuristicLab.Problems.ExternalEvaluation.GP {
    30   [StorableClass]
     30  [StorableClass("51042274-3C6E-44CA-8E92-1E9501F1FE4F")]
    3131  [Item("ExternalEvaluationExpressionGrammar", "Represents a grammar for functional expressions using all available functions.")]
    3232  public class ExternalEvaluationExpressionGrammar : SymbolicExpressionGrammar, ISymbolicDataAnalysisGrammar {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation.GP/3.5/ExternalEvaluationSymbolicExpressionTreeBinaryConverter.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2929namespace HeuristicLab.Problems.ExternalEvaluation.GP {
    3030  [Item("SymbolicExpressionTreeBinaryConverter", "Converts a symbolic expression tree into a binary representation by iterating over all nodes in a prefix way. The binary format is defined in HeuristicLab.Persistence.")]
    31   [StorableClass]
     31  [StorableClass("82D2DD5F-38A5-46D8-A1B4-F37B673534AA")]
    3232  public class SymbolicExpressionTreeBinaryConverter : SymbolicExpressionTreeConverter {
    3333    [StorableConstructor]
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation.GP/3.5/ExternalEvaluationSymbolicExpressionTreeConverter.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2828namespace HeuristicLab.Problems.ExternalEvaluation.GP {
    2929  [Item("SymbolicExpressionTreeStringConverter", "Abstract base class for symbolic expression tree converters.")]
    30   [StorableClass]
     30  [StorableClass("84045242-43FA-45F6-8615-485C72E2B397")]
    3131  public abstract class SymbolicExpressionTreeConverter : Item, IItemToSolutionMessageConverter {
    3232    private static readonly Type[] itemTypes = new Type[] { typeof(SymbolicExpressionTree) };
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation.GP/3.5/ExternalEvaluationSymbolicExpressionTreeStringConverter.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2828namespace HeuristicLab.Problems.ExternalEvaluation.GP {
    2929  [Item("SymbolicExpressionTreeStringConverter", "Converts a symbolic expression tree into a string representation by iterating over all nodes in a prefix way. The string is added to the SolutionMessage's StringVars.")]
    30   [StorableClass]
     30  [StorableClass("6B9C1533-BF43-4C56-B992-88E9EC33D073")]
    3131  public class SymbolicExpressionTreeStringConverter : SymbolicExpressionTreeConverter {
    3232    private ExternalEvaluationSymbolicExpressionTreeStringFormatter formatter;
  • branches/PersistenceOverhaul/HeuristicLab.Problems.ExternalEvaluation.GP/3.5/ExternalEvaluationSymbolicExpressionTreeStringFormatter.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3333
    3434  [Item("ExternalEvaluationSymbolicExpressionTreeStringFormatter", "A string formatter for symbolic expression trees for external evaluation.")]
    35   [StorableClass]
     35  [StorableClass("C2456943-3EF5-444A-BE03-9DB0D496226D")]
    3636  public class ExternalEvaluationSymbolicExpressionTreeStringFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
    3737
Note: See TracChangeset for help on using the changeset viewer.