Changeset 88
- Timestamp:
- 03/22/08 10:45:41 (17 years ago)
- Location:
- trunk/sources/HeuristicLab.StructureIdentification
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.StructureIdentification/HeuristicLab.StructureIdentification.csproj
r30 r88 48 48 </ItemGroup> 49 49 <ItemGroup> 50 <Compile Include="DelegatingOperator.cs" /> 50 51 <Compile Include="Evaluation\CoefficientOfDeterminationEvaluator.cs" /> 51 52 <Compile Include="Evaluation\FunctionEvaluator.cs"> -
trunk/sources/HeuristicLab.StructureIdentification/Manipulation/FullTreeShaker.cs
r2 r88 31 31 32 32 namespace HeuristicLab.StructureIdentification { 33 public class FullTreeShaker : OperatorBase{33 public class FullTreeShaker : DelegatingOperator { 34 34 public override string Description { 35 35 get { return "Manipulates all tree nodes for which a '"+GPOperatorLibrary.MANIPULATION+"' variable is defined."; } -
trunk/sources/HeuristicLab.StructureIdentification/Manipulation/OnePointShaker.cs
r2 r88 31 31 32 32 namespace HeuristicLab.StructureIdentification { 33 public class OnePointShaker : OperatorBase{33 public class OnePointShaker : DelegatingOperator { 34 34 public override string Description { 35 35 get { return "Selects a random node of all tree-nodes that have a '"+GPOperatorLibrary.MANIPULATION+"' variable defined and manipulates the selected node."; } … … 60 60 // store all local variables into a temporary scope 61 61 Scope tempScope = new Scope("Temp. manipulation scope"); 62 // add aliases 63 foreach(IVariableInfo variableInfo in VariableInfos) 64 tempScope.AddAlias(variableInfo.FormalName, variableInfo.ActualName); 62 65 63 66 foreach(IVariableInfo info in selectedOp.VariableInfos) {
Note: See TracChangeset
for help on using the changeset viewer.