Changeset 3462 for trunk/sources/HeuristicLab.Problems.ArtificialAnt
- Timestamp:
- 04/21/10 15:21:34 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/AntInterpreter.cs
r3457 r3462 25 25 using HeuristicLab.Data; 26 26 using System.Collections.Generic; 27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.GeneralSymbols; 27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 28 using HeuristicLab.Problems.ArtificialAnt.Symbols; 28 29 29 30 namespace HeuristicLab.Problems.ArtificialAnt { -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/ArtificialAntExpressionGrammar.cs
r3376 r3462 28 28 using HeuristicLab.Core; 29 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.GeneralSymbols; 30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 31 using HeuristicLab.Problems.ArtificialAnt.Symbols; 31 32 namespace HeuristicLab.Problems.ArtificialAnt { 32 33 [StorableClass] -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/ArtificialAntProblem.cs
r3338 r3462 32 32 using HeuristicLab.PluginInfrastructure; 33 33 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 34 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Creators; 35 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Crossovers; 36 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Manipulators; 37 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.ArchitectureAlteringOperators; 34 38 35 39 namespace HeuristicLab.Problems.ArtificialAnt { -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/IfFoodAhead.cs
r3376 r3462 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 namespace HeuristicLab.Problems.ArtificialAnt { 26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 27 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 28 [StorableClass] 28 29 [Item("IfFoodAhead", "Represents the if-food-ahead symbol in a artificial ant expression.")] -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Left.cs
r3376 r3462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 namespace HeuristicLab.Problems.ArtificialAnt { 26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 27 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 28 [StorableClass] 28 29 [Item("Left", "Represents the turn-left symbol in a artificial ant expression.")] -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Move.cs
r3376 r3462 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 namespace HeuristicLab.Problems.ArtificialAnt { 26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 27 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 28 [StorableClass] 28 29 [Item("Move", "Represents the move-forward symbol in a artificial ant expression.")] -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Prog2.cs
r3376 r3462 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 namespace HeuristicLab.Problems.ArtificialAnt { 27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 28 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 28 29 [StorableClass] 29 30 [Item("Prog2", "Represents the sequence symbol with 2 sub-trees in a artificial ant expression.")] -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Prog3.cs
r3376 r3462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 namespace HeuristicLab.Problems.ArtificialAnt { 26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 27 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 28 [StorableClass] 28 29 [Item("Prog3", "Represents the sequence symbol with 3 sub-trees in a artificial ant expression.")] -
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/Symbols/Right.cs
r3376 r3462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 namespace HeuristicLab.Problems.ArtificialAnt { 26 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 27 namespace HeuristicLab.Problems.ArtificialAnt.Symbols { 27 28 [StorableClass] 28 29 [Item("Right", "Represents the turn-right symbol in a artificial ant expression.")]
Note: See TracChangeset
for help on using the changeset viewer.