- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/ArtificialAnt/Problem.cs
r13269 r13368 35 35 [Item("Artificial Ant Problem", "Represents the Artificial Ant problem.")] 36 36 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 170)] 37 [StorableClass ]37 [StorableClass("F722FA09-B8E2-4C8A-B81A-B13C9DBC6F23")] 38 38 public sealed class Problem : SymbolicExpressionTreeProblem, IStorableContent { 39 39 -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/ArtificialAnt/Trail.cs
r13269 r13368 32 32 /// </summary> 33 33 [Item("AntTrail", "Represents a trail of an artificial ant which can be visualized in the GUI.")] 34 [StorableClass ]34 [StorableClass("2B4B2242-3BA5-40F4-9D6B-7D76568715F0")] 35 35 public sealed class Solution : Item { 36 36 public static new Image StaticItemImage { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/BasicSymbolicRegression/Problem.cs
r13269 r13368 35 35 [Item("Koza-style Symbolic Regression", "An implementation of symbolic regression without bells-and-whistles. Use \"Symbolic Regression Problem (single-objective)\" if you want to use all features.")] 36 36 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 900)] 37 [StorableClass ]37 [StorableClass("D152EEC7-F09C-4FC4-84B1-919AC4FBAE50")] 38 38 public sealed class Problem : SymbolicExpressionTreeProblem, IRegressionProblem, IProblemInstanceConsumer<IRegressionProblemData>, IProblemInstanceExporter<IRegressionProblemData> { 39 39 -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean/EvenParityProblem.cs
r13269 r13368 34 34 [Item("Even Parity Problem", "The Boolean even parity genetic programming problem. See Koza, 1992, page 529 section 20.2 Symbolic Regression of Even-Parity Functions")] 35 35 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 900)] 36 [StorableClass ]36 [StorableClass("1394187F-9938-4214-B23C-E67FA599633C")] 37 37 public sealed class EvenParityProblem : SymbolicExpressionTreeProblem { 38 38 -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/Boolean/MultiplexerProblem.cs
r13269 r13368 36 36 "The Boolean multiplexer genetic programming problem. See Koza 1992, page 171, section 7.4.1 11-multiplexer.")] 37 37 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 900)] 38 [StorableClass ]38 [StorableClass("B1219885-2D3F-47D9-A645-C742780D03F3")] 39 39 public sealed class MultiplexerProblem : SymbolicExpressionTreeProblem { 40 40 -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/LawnMower/Problem.cs
r13269 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.GeneticProgramming.LawnMower { 34 [StorableClass ]34 [StorableClass("8403558D-04ED-40FC-92F1-FADDF4341A61")] 35 35 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 160)] 36 36 [Item("Lawn Mower Problem", "The lawn mower demo problem for genetic programming.")] -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/LawnMower/Solution.cs
r13269 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.GeneticProgramming.LawnMower { 28 [StorableClass ]28 [StorableClass("A81DE607-3301-494A-9682-B39C8D358711")] 29 29 public sealed class Solution : NamedItem { 30 30 [Storable] -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/EnemyCollection.cs
r13210 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 31 31 namespace HeuristicLab.Problems.GeneticProgramming.Robocode { 32 32 [Item("EnemyCollection", "A collection of enemy robots for the Robocode genetic programming problem.")] 33 [StorableClass ]33 [StorableClass("19A1CD8E-28BD-455F-B1BB-C41E9D6D3798")] 34 34 public class EnemyCollection : CheckedItemList<StringValue> { 35 35 private const string sampleRobotToSelect = "sample.Crazy"; -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Grammar.cs
r13210 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.GeneticProgramming.Robocode { 28 [StorableClass ]28 [StorableClass("53BB8535-4BBD-4154-8400-29B03968489B")] 29 29 [Item("Robocode Grammar", "The grammar for the Robocode GP problem.")] 30 30 public class Grammar : SymbolicExpressionGrammar { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Problem.cs
r13210 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 29 29 30 30 namespace HeuristicLab.Problems.GeneticProgramming.Robocode { 31 [StorableClass ]31 [StorableClass("CCDE781F-C08A-42FC-92F9-DA45179DA98B")] 32 32 [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 360)] 33 33 [Item("Robocode Problem", "Evolution of a robocode program in java using genetic programming.")] -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Solution.cs
r13210 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.GeneticProgramming.Robocode { 28 [StorableClass ]28 [StorableClass("B45EA8B7-9B06-445F-8947-F60C2A27B514")] 29 29 [Item("Solution", "Robocode program and configuration.")] 30 30 public sealed class Solution : Item { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Symbols/BooleanTreeNode.cs
r13210 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.GeneticProgramming.Robocode { 28 [StorableClass ]28 [StorableClass("D3457504-5E52-4A07-B425-0548F7BC8B17")] 29 29 public class BooleanTreeNode : SymbolicExpressionTreeTerminalNode { 30 30 private bool value; -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Symbols/BooleanValue.cs
r13210 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.GeneticProgramming.Robocode { 28 [StorableClass ]28 [StorableClass("14E2D747-BE81-4609-8CD6-0B4C95DE4742")] 29 29 public class BooleanValue : Symbol { 30 30 public override int MinimumArity { get { return 0; } } -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Symbols/CodeSymbol.cs
r13210 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.GeneticProgramming.Robocode { 28 [StorableClass ]28 [StorableClass("4D367CF4-BE0B-4384-A4E4-3DEA63334EEB")] 29 29 // a symbol that can represent any user-defined fragment of code 30 30 public sealed class CodeSymbol : Symbol { -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Symbols/Number.cs
r13210 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.GeneticProgramming.Robocode { 29 [StorableClass ]29 [StorableClass("D5D4D450-E087-410A-ABC6-5555BF57DB44")] 30 30 public class Number : Symbol { 31 31 public override int MinimumArity { get { return 0; } } -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Symbols/NumberTreeNode.cs
r13210 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.GeneticProgramming.Robocode { 28 [StorableClass ]28 [StorableClass("23078848-6197-4C2D-AB45-80AF77039266")] 29 29 public class NumberTreeNode : SymbolicExpressionTreeTerminalNode { 30 30 private int value; -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Symbols/ShotPower.cs
r13210 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.GeneticProgramming.Robocode { 29 [StorableClass ]29 [StorableClass("08056362-D57B-461D-B7BD-F9439FAEAD11")] 30 30 public class ShotPower : Symbol { 31 31 public override int MinimumArity { get { return 0; } } -
branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode/Symbols/ShotPowerTreeNode.cs
r13311 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.GeneticProgramming.Robocode { 29 [StorableClass ]29 [StorableClass("002ED6EC-1502-4D92-BD99-A5F6D9FA2A52")] 30 30 public class ShotPowerTreeNode : SymbolicExpressionTreeTerminalNode { 31 31 private double value;
Note: See TracChangeset
for help on using the changeset viewer.