- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- 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 Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 30 30 31 31 namespace HeuristicLab.Problems.LawnMower { 32 [StorableClass ]32 [StorableClass("33C3BFD9-5CEC-487C-9CF1-8E9235C9CB63")] 33 33 [Item("Best Lawn Mower Solution Analyzer", "Analyzer that stores the best lawn mower solution.")] 34 34 public class BestSolutionAnalyzer : SingleSuccessorOperator, ISymbolicExpressionTreeAnalyzer { -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Evaluator.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 30 30 31 31 namespace HeuristicLab.Problems.LawnMower { 32 [StorableClass ]32 [StorableClass("09C181E0-09B8-4A2A-B8D1-C5A0EB25A036")] 33 33 [Item("Lawn Mower Evaluator", "Evaluator for the lawn mower demo GP problem.")] 34 34 public class Evaluator : InstrumentedOperator, ISingleObjectiveEvaluator { -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Grammar.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 27 27 28 28 namespace HeuristicLab.Problems.LawnMower { 29 [StorableClass ]29 [StorableClass("689C6397-EFD4-4BD7-BA6A-4ADE24C7F2BE")] 30 30 [Item("Lawn Mower Grammar", "The grammar for the lawn mower GP problem.")] 31 31 public sealed class Grammar : SymbolicExpressionGrammar { -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Problem.cs
r12899 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 32 32 33 33 namespace HeuristicLab.Problems.LawnMower { 34 [StorableClass ]34 [StorableClass("F011A534-8F3A-4682-A474-74E26E787573")] 35 35 [Item("Lawn Mower Problem", "The lawn mower demo problem for genetic programming.")] 36 36 public class Problem : SingleObjectiveHeuristicOptimizationProblem<Evaluator, ISymbolicExpressionTreeCreator> { -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Solution.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 26 26 27 27 namespace HeuristicLab.Problems.LawnMower { 28 [StorableClass ]28 [StorableClass("B89091EE-7C06-4C28-AA60-33F5E84A0240")] 29 29 public sealed class Solution : NamedItem { 30 30 private int width; -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Constant.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 25 25 26 26 namespace HeuristicLab.Problems.LawnMower { 27 [StorableClass ]27 [StorableClass("304BBC04-AD41-44F8-9E0C-2FEDEA83DEFF")] 28 28 public sealed class Constant : Symbol { 29 29 public override int MinimumArity { -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/ConstantTreeNode.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 27 27 28 28 namespace HeuristicLab.Problems.LawnMower { 29 [StorableClass ]29 [StorableClass("2C281DFB-E16D-4C0F-AC58-288458E9001D")] 30 30 public sealed class ConstantTreeNode : SymbolicExpressionTreeTerminalNode { 31 31 private Tuple<int, int> value; -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Forward.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 25 25 26 26 namespace HeuristicLab.Problems.LawnMower { 27 [StorableClass ]27 [StorableClass("C9FDA044-BD8B-4E5F-A4D7-39B32DA4D133")] 28 28 public sealed class Forward : Symbol { 29 29 public override int MinimumArity { -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Frog.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 25 25 26 26 namespace HeuristicLab.Problems.LawnMower { 27 [StorableClass ]27 [StorableClass("55EE5509-80BF-4F0A-810B-91A9F7AAB71A")] 28 28 public sealed class Frog : Symbol { 29 29 public override int MinimumArity { -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Left.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 25 25 26 26 namespace HeuristicLab.Problems.LawnMower { 27 [StorableClass ]27 [StorableClass("EDD65E28-6759-4C3A-83DF-E23E3EEAF401")] 28 28 public sealed class Left : Symbol { 29 29 -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Prog.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 25 25 26 26 namespace HeuristicLab.Problems.LawnMower { 27 [StorableClass ]27 [StorableClass("96D75667-36CD-477D-95A7-627429158563")] 28 28 public sealed class Prog : Symbol { 29 29 public override int MinimumArity { -
branches/PersistenceOverhaul/HeuristicLab.Problems.LawnMower/3.3/Symbols/Sum.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 25 25 26 26 namespace HeuristicLab.Problems.LawnMower { 27 [StorableClass ]27 [StorableClass("FF2B6E61-BBDD-4F53-BC9E-FF553251304E")] 28 28 public sealed class Sum : Symbol { 29 29 public override int MinimumArity {
Note: See TracChangeset
for help on using the changeset viewer.