Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.GeneticProgramming/3.3/robocode
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
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.