Changeset 3993 for trunk/sources/HeuristicLab.Problems.ArtificialAnt
- Timestamp:
- 07/02/10 11:38:04 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/ArtificialAntExpressionGrammar.cs
r3462 r3993 38 38 Initialize(); 39 39 } 40 [StorableConstructor] 41 protected ArtificialAntExpressionGrammar(bool deserializing) : base(deserializing) { } 40 42 41 43 private void Initialize() { -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/IfFoodAhead.cs
r3462 r3993 29 29 [Item("IfFoodAhead", "Represents the if-food-ahead symbol in a artificial ant expression.")] 30 30 public sealed class IfFoodAhead : Symbol { 31 public IfFoodAhead() : base("IfFoodAhead", "Represents the if-food-ahead symbol in a artificial ant expression.") { } 31 32 } 32 33 } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Left.cs
r3462 r3993 29 29 [Item("Left", "Represents the turn-left symbol in a artificial ant expression.")] 30 30 public sealed class Left : Symbol { 31 public Left() : base("Left", "Represents the turn-left symbol in a artificial ant expression.") { } 31 32 } 32 33 } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Move.cs
r3462 r3993 29 29 [Item("Move", "Represents the move-forward symbol in a artificial ant expression.")] 30 30 public sealed class Move : Symbol { 31 public Move() : base("Move", "Represents the move-forward symbol in a artificial ant expression.") { } 31 32 } 32 33 } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Prog2.cs
r3462 r3993 30 30 [Item("Prog2", "Represents the sequence symbol with 2 sub-trees in a artificial ant expression.")] 31 31 public sealed class Prog2 : Symbol { 32 public Prog2() : base("Prog2", "Represents the sequence symbol with 2 sub-trees in a artificial ant expression.") { } 32 33 } 33 34 } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Prog3.cs
r3462 r3993 29 29 [Item("Prog3", "Represents the sequence symbol with 3 sub-trees in a artificial ant expression.")] 30 30 public sealed class Prog3 : Symbol { 31 public Prog3() : base("Prog3", "Represents the sequence symbol with 3 sub-trees in a artificial ant expression.") { } 31 32 } 32 33 } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Right.cs
r3462 r3993 29 29 [Item("Right", "Represents the turn-right symbol in a artificial ant expression.")] 30 30 public sealed class Right : Symbol { 31 public Right() : base("Right", "Represents the turn-right symbol in a artificial ant expression.") { } 31 32 } 32 33 }
Note: See TracChangeset
for help on using the changeset viewer.