- Timestamp:
- 03/25/10 19:19:37 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3
-
Property
svn:ignore
set to
bin
*.user
obj
-
Property
svn:ignore
set to
-
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3/Manipulators/ChangeNodeTypeManipulation.cs
r3218 r3219 27 27 using HeuristicLab.GP.Interfaces; 28 28 29 namespace HeuristicLab. GP.Operators{29 namespace HeuristicLab.Encodings.SymbolicExpressionTree { 30 30 public class ChangeNodeTypeManipulation : GPManipulatorBase { 31 31 -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3/Manipulators/CutOutNodeManipulation.cs
r3218 r3219 27 27 using HeuristicLab.GP.Interfaces; 28 28 29 namespace HeuristicLab. GP.Operators{29 namespace HeuristicLab.Encodings.SymbolicExpressionTree { 30 30 public class CutOutNodeManipulation : GPManipulatorBase { 31 31 public override string Description { -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3/Manipulators/DeleteSubTreeManipulation.cs
r3218 r3219 26 26 using HeuristicLab.GP.Interfaces; 27 27 28 namespace HeuristicLab. GP.Operators{28 namespace HeuristicLab.Encodings.SymbolicExpressionTree { 29 29 public class DeleteSubTreeManipulation : GPManipulatorBase { 30 30 public override string Description { -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3/Manipulators/FullTreeShaker.cs
r3218 r3219 25 25 using HeuristicLab.Random; 26 26 using HeuristicLab.Data; 27 using HeuristicLab.GP.Interfaces;28 using HeuristicLab.Selection;29 27 30 namespace HeuristicLab. GP.Operators{28 namespace HeuristicLab.Encodings.SymbolicExpressionTree { 31 29 public class FullTreeShaker : DelegatingOperator { 32 30 public override string Description { -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3/Manipulators/GPManipulatorBase.cs
r3218 r3219 23 23 using HeuristicLab.Random; 24 24 using HeuristicLab.Data; 25 using HeuristicLab.GP.Interfaces;26 25 27 namespace HeuristicLab. GP.Operators{26 namespace HeuristicLab.Encodings.SymbolicExpressionTree { 28 27 public abstract class GPManipulatorBase : OperatorBase { 29 28 public GPManipulatorBase() -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3/Manipulators/OnePointShaker.cs
r3218 r3219 25 25 using HeuristicLab.Random; 26 26 using HeuristicLab.Data; 27 using HeuristicLab.Selection;28 using HeuristicLab.GP.Interfaces;29 27 30 namespace HeuristicLab. GP.Operators{28 namespace HeuristicLab.Encodings.SymbolicExpressionTree { 31 29 public class OnePointShaker : DelegatingOperator { 32 30 public override string Description { -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTree/3.3/Manipulators/SubstituteSubTreeManipulation.cs
r3218 r3219 27 27 using HeuristicLab.GP.Interfaces; 28 28 29 namespace HeuristicLab. GP.Operators{29 namespace HeuristicLab.Encodings.SymbolicExpressionTree { 30 30 public class SubstituteSubTreeManipulation : GPManipulatorBase { 31 31
Note: See TracChangeset
for help on using the changeset viewer.