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.LawnMower/3.3
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/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)
     
    3030
    3131namespace HeuristicLab.Problems.LawnMower {
    32   [StorableClass]
     32  [StorableClass("33C3BFD9-5CEC-487C-9CF1-8E9235C9CB63")]
    3333  [Item("Best Lawn Mower Solution Analyzer", "Analyzer that stores the best lawn mower solution.")]
    3434  public class BestSolutionAnalyzer : SingleSuccessorOperator, ISymbolicExpressionTreeAnalyzer {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Evaluator.cs

    r12012 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.Problems.LawnMower {
    32   [StorableClass]
     32  [StorableClass("09C181E0-09B8-4A2A-B8D1-C5A0EB25A036")]
    3333  [Item("Lawn Mower Evaluator", "Evaluator for the lawn mower demo GP problem.")]
    3434  public class Evaluator : InstrumentedOperator, ISingleObjectiveEvaluator {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Grammar.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2727
    2828namespace HeuristicLab.Problems.LawnMower {
    29   [StorableClass]
     29  [StorableClass("689C6397-EFD4-4BD7-BA6A-4ADE24C7F2BE")]
    3030  [Item("Lawn Mower Grammar", "The grammar for the lawn mower GP problem.")]
    3131  public sealed class Grammar : SymbolicExpressionGrammar {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Problem.cs

    r12899 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.Problems.LawnMower {
    34   [StorableClass]
     34  [StorableClass("F011A534-8F3A-4682-A474-74E26E787573")]
    3535  [Item("Lawn Mower Problem", "The lawn mower demo problem for genetic programming.")]
    3636  public class Problem : SingleObjectiveHeuristicOptimizationProblem<Evaluator, ISymbolicExpressionTreeCreator> {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Solution.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2626
    2727namespace HeuristicLab.Problems.LawnMower {
    28   [StorableClass]
     28  [StorableClass("B89091EE-7C06-4C28-AA60-33F5E84A0240")]
    2929  public sealed class Solution : NamedItem {
    3030    private int width;
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Constant.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2525
    2626namespace HeuristicLab.Problems.LawnMower {
    27   [StorableClass]
     27  [StorableClass("304BBC04-AD41-44F8-9E0C-2FEDEA83DEFF")]
    2828  public sealed class Constant : Symbol {
    2929    public override int MinimumArity {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/ConstantTreeNode.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2727
    2828namespace HeuristicLab.Problems.LawnMower {
    29   [StorableClass]
     29  [StorableClass("2C281DFB-E16D-4C0F-AC58-288458E9001D")]
    3030  public sealed class ConstantTreeNode : SymbolicExpressionTreeTerminalNode {
    3131    private Tuple<int, int> value;
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Forward.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2525
    2626namespace HeuristicLab.Problems.LawnMower {
    27   [StorableClass]
     27  [StorableClass("C9FDA044-BD8B-4E5F-A4D7-39B32DA4D133")]
    2828  public sealed class Forward : Symbol {
    2929    public override int MinimumArity {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Frog.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2525
    2626namespace HeuristicLab.Problems.LawnMower {
    27   [StorableClass]
     27  [StorableClass("55EE5509-80BF-4F0A-810B-91A9F7AAB71A")]
    2828  public sealed class Frog : Symbol {
    2929    public override int MinimumArity {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Left.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2525
    2626namespace HeuristicLab.Problems.LawnMower {
    27   [StorableClass]
     27  [StorableClass("EDD65E28-6759-4C3A-83DF-E23E3EEAF401")]
    2828  public sealed class Left : Symbol {
    2929
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Prog.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2525
    2626namespace HeuristicLab.Problems.LawnMower {
    27   [StorableClass]
     27  [StorableClass("96D75667-36CD-477D-95A7-627429158563")]
    2828  public sealed class Prog : Symbol {
    2929    public override int MinimumArity {
  • branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Sum.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    2525
    2626namespace HeuristicLab.Problems.LawnMower {
    27   [StorableClass]
     27  [StorableClass("FF2B6E61-BBDD-4F53-BC9E-FF553251304E")]
    2828  public sealed class Sum : Symbol {
    2929    public override int MinimumArity {
Note: See TracChangeset for help on using the changeset viewer.