- Timestamp:
- 09/20/11 11:12:10 (13 years ago)
- Location:
- trunk/sources
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:ignore
-
old new 13 13 *.vsp 14 14 *.docstates 15 bin 16 HeuristicLab 3.3.6.0.ReSharper.user
-
- Property svn:mergeinfo changed
/branches/GP.Grammar.Editor (added) merged: 6284-6285,6296,6299,6335,6337,6377,6379,6387,6403,6409,6415,6493-6494,6497,6618,6620,6622,6626,6647,6675,6782,6784,6786,6795
- Property svn:ignore
-
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/IfFoodAhead.cs
r5809 r6803 28 28 [Item("IfFoodAhead", "Represents the if-food-ahead symbol in a artificial ant expression.")] 29 29 public sealed class IfFoodAhead : Symbol { 30 private const int minimumArity = 2; 31 private const int maximumArity = 3; 32 33 public override int MinimumArity { 34 get { return minimumArity; } 35 } 36 public override int MaximumArity { 37 get { return maximumArity; } 38 } 39 30 40 [StorableConstructor] 31 41 private IfFoodAhead(bool deserializing) : base(deserializing) { } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Left.cs
r5809 r6803 28 28 [Item("Left", "Represents the turn-left symbol in a artificial ant expression.")] 29 29 public sealed class Left : Symbol { 30 private const int minimumArity = 0; 31 private const int maximumArity = 0; 32 33 public override int MinimumArity { 34 get { return minimumArity; } 35 } 36 public override int MaximumArity { 37 get { return maximumArity; } 38 } 39 30 40 [StorableConstructor] 31 41 private Left(bool deserializing) : base(deserializing) { } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Move.cs
r5809 r6803 28 28 [Item("Move", "Represents the move-forward symbol in a artificial ant expression.")] 29 29 public sealed class Move : Symbol { 30 private const int minimumArity = 0; 31 private const int maximumArity = 0; 32 33 public override int MinimumArity { 34 get { return minimumArity; } 35 } 36 public override int MaximumArity { 37 get { return maximumArity; } 38 } 39 30 40 [StorableConstructor] 31 41 private Move(bool deserializing) : base(deserializing) { } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Prog2.cs
r5809 r6803 29 29 [Item("Prog2", "Represents the sequence symbol with 2 sub-trees in a artificial ant expression.")] 30 30 public sealed class Prog2 : Symbol { 31 private const int minimumArity = 2; 32 private const int maximumArity = 2; 33 34 public override int MinimumArity { 35 get { return minimumArity; } 36 } 37 public override int MaximumArity { 38 get { return maximumArity; } 39 } 40 31 41 [StorableConstructor] 32 42 private Prog2(bool deserializing) : base(deserializing) { } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Prog3.cs
r5809 r6803 28 28 [Item("Prog3", "Represents the sequence symbol with 3 sub-trees in a artificial ant expression.")] 29 29 public sealed class Prog3 : Symbol { 30 private const int minimumArity = 3; 31 private const int maximumArity = 3; 32 33 public override int MinimumArity { 34 get { return minimumArity; } 35 } 36 public override int MaximumArity { 37 get { return maximumArity; } 38 } 39 30 40 [StorableConstructor] 31 41 private Prog3(bool deserializing) : base(deserializing) { } -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.4/Symbols/Right.cs
r5809 r6803 28 28 [Item("Right", "Represents the turn-right symbol in a artificial ant expression.")] 29 29 public sealed class Right : Symbol { 30 private const int minimumArity = 0; 31 private const int maximumArity = 0; 32 33 public override int MinimumArity { 34 get { return minimumArity; } 35 } 36 public override int MaximumArity { 37 get { return maximumArity; } 38 } 39 30 40 [StorableConstructor] 31 41 private Right(bool deserializing) : base(deserializing) { }
Note: See TracChangeset
for help on using the changeset viewer.