- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/Analyzers/BestAntTrailAnalyzer.cs
r13368 r14711 35 35 /// </summary> 36 36 [Item("BestAntTrailAnalyzer", "An operator for analyzing the best ant trail of an artificial ant problem.")] 37 [Storable Class("3D72FA3E-4A4E-4FBA-A8EF-477D780C6658")]37 [StorableType("3D72FA3E-4A4E-4FBA-A8EF-477D780C6658")] 38 38 public sealed class BestAntTrailAnalyzer : SingleSuccessorOperator, IAntTrailAnalyzer, ISingleObjectiveOperator { 39 39 public bool EnabledByDefault { -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/AntTrail.cs
r13368 r14711 33 33 /// </summary> 34 34 [Item("AntTrail", "Represents a trail of an artificial ant which can be visualized in the GUI.")] 35 [Storable Class("56C847FA-9B1A-4EB0-9A98-896AC4DE238F")]35 [StorableType("56C847FA-9B1A-4EB0-9A98-896AC4DE238F")] 36 36 public sealed class AntTrail : Item { 37 37 public static new Image StaticItemImage { -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/ArtificialAntExpressionGrammar.cs
r13368 r14711 28 28 using HeuristicLab.Problems.ArtificialAnt.Symbols; 29 29 namespace HeuristicLab.Problems.ArtificialAnt { 30 [Storable Class("7976601A-0216-441D-A736-8B783661C53C")]30 [StorableType("7976601A-0216-441D-A736-8B783661C53C")] 31 31 [Item(Name = "ArtificialAntExpressionGrammar", Description = "The default grammar for an artificial ant problem.")] 32 32 public class ArtificialAntExpressionGrammar : SymbolicExpressionGrammar { -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/ArtificialAntProblem.cs
r13368 r14711 35 35 namespace HeuristicLab.Problems.ArtificialAnt { 36 36 [Item("Artificial Ant Problem", "Represents the Artificial Ant problem.")] 37 [Storable Class("B0A00A14-1243-4823-90A6-F66DC6F05367")]37 [StorableType("B0A00A14-1243-4823-90A6-F66DC6F05367")] 38 38 public sealed class ArtificialAntProblem : SingleObjectiveHeuristicOptimizationProblem<Evaluator, ISymbolicExpressionTreeCreator>, IStorableContent { 39 39 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/Evaluator.cs
r13368 r14711 31 31 namespace HeuristicLab.Problems.ArtificialAnt { 32 32 [Item("ArtificialAntEvaluator", "Evaluates an artificial ant solution.")] 33 [Storable Class("7601C3BD-E970-4506-906E-965E08CF85DC")]33 [StorableType("7601C3BD-E970-4506-906E-965E08CF85DC")] 34 34 public class Evaluator : InstrumentedOperator, ISingleObjectiveEvaluator { 35 35 -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/IfFoodAhead.cs
r13368 r14711 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 26 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 [Storable Class("7889CE79-9C3C-45B7-AD5F-FE9C1B37AD3B")]27 [StorableType("7889CE79-9C3C-45B7-AD5F-FE9C1B37AD3B")] 28 28 [Item("IfFoodAhead", "Represents the if-food-ahead symbol in a artificial ant expression.")] 29 29 public sealed class IfFoodAhead : Symbol { -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Left.cs
r13368 r14711 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 26 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 [Storable Class("FC269D77-E6BB-4CFE-A44D-4FD2AC78F687")]27 [StorableType("FC269D77-E6BB-4CFE-A44D-4FD2AC78F687")] 28 28 [Item("Left", "Represents the turn-left symbol in a artificial ant expression.")] 29 29 public sealed class Left : Symbol { -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Move.cs
r13368 r14711 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 26 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 [Storable Class("20684258-5D6C-429E-A4CD-538B9566287C")]27 [StorableType("20684258-5D6C-429E-A4CD-538B9566287C")] 28 28 [Item("Move", "Represents the move-forward symbol in a artificial ant expression.")] 29 29 public sealed class Move : Symbol { -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Prog2.cs
r13368 r14711 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 27 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 28 [Storable Class("9598AA16-A005-431B-AB67-00EC775805F0")]28 [StorableType("9598AA16-A005-431B-AB67-00EC775805F0")] 29 29 [Item("Prog2", "Represents the sequence symbol with 2 sub-trees in a artificial ant expression.")] 30 30 public sealed class Prog2 : Symbol { -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Prog3.cs
r13368 r14711 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 26 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 [Storable Class("B8A2B010-3BB1-4D50-BCCD-E22A62388546")]27 [StorableType("B8A2B010-3BB1-4D50-BCCD-E22A62388546")] 28 28 [Item("Prog3", "Represents the sequence symbol with 3 sub-trees in a artificial ant expression.")] 29 29 public sealed class Prog3 : Symbol { -
branches/PersistenceOverhaul/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Right.cs
r13368 r14711 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 26 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 [Storable Class("50B9D0F9-73D7-44D6-B227-2F27B31DD589")]27 [StorableType("50B9D0F9-73D7-44D6-B227-2F27B31DD589")] 28 28 [Item("Right", "Represents the turn-right symbol in a artificial ant expression.")] 29 29 public sealed class Right : Symbol {
Note: See TracChangeset
for help on using the changeset viewer.