Changeset 2361 for trunk/sources/HeuristicLab.GP.StructureIdentification
- Timestamp:
- 09/15/09 16:36:48 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.GP.StructureIdentification/3.3
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/HeuristicLab.GP.StructureIdentification-3.3.csproj
r2341 r2361 87 87 <Compile Include="HL3TreeEvaluatorInjector.cs" /> 88 88 <Compile Include="HL2TreeEvaluatorInjector.cs" /> 89 <Compile Include="OffspringSelectionGP .cs" />89 <Compile Include="OffspringSelectionGPRegression.cs" /> 90 90 <Compile Include="PredictorBuilder.cs" /> 91 91 <Compile Include="Predictor.cs" /> … … 98 98 <DependentUpon>PredictorView.cs</DependentUpon> 99 99 </Compile> 100 <Compile Include="StandardGP.cs"> 101 <SubType>Code</SubType> 102 </Compile> 100 <Compile Include="StandardGPRegression.cs" /> 103 101 <Compile Include="Symbols\Addition.cs" /> 104 102 <Compile Include="Symbols\And.cs" /> -
trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/OffspringSelectionGPRegression.cs
r2356 r2361 33 33 34 34 namespace HeuristicLab.GP.StructureIdentification { 35 public class OffspringSelectionGP : HeuristicLab.GP.Algorithms.OffspringSelectionGP, IAlgorithm {35 public class OffspringSelectionGPRegression : HeuristicLab.GP.Algorithms.OffspringSelectionGP, IAlgorithm { 36 36 public override string Name { get { return "OffspringSelectionGP - StructureIdentification"; } } 37 37 … … 71 71 } 72 72 73 public OffspringSelectionGP ()73 public OffspringSelectionGPRegression() 74 74 : base() { 75 75 PunishmentFactor = 10.0; … … 154 154 } 155 155 156 public override object Clone(IDictionary<Guid, object> clonedObjects) {157 OffspringSelectionGP clone = (OffspringSelectionGP)base.Clone(clonedObjects);158 clone.PunishmentFactor = PunishmentFactor;159 return clone;160 }161 162 156 protected CombinedOperator GetProblemInjector() { 163 157 return (CombinedOperator)GetInitializationOperator().SubOperators[0]; -
trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/StandardGPRegression.cs
r2356 r2361 32 32 33 33 namespace HeuristicLab.GP.StructureIdentification { 34 public class StandardGP : HeuristicLab.GP.Algorithms.StandardGP, IAlgorithm {34 public class StandardGPRegression : HeuristicLab.GP.Algorithms.StandardGP, IAlgorithm { 35 35 36 36 public override string Name { get { return "StandardGP - StructureIdentification"; } } … … 71 71 } 72 72 73 public StandardGP ()73 public StandardGPRegression() 74 74 : base() { 75 75 … … 153 153 } 154 154 155 public override object Clone(IDictionary<Guid, object> clonedObjects) {156 StandardGP clone = (StandardGP)base.Clone(clonedObjects);157 clone.PunishmentFactor = PunishmentFactor;158 return clone;159 }160 161 155 protected CombinedOperator GetProblemInjector() { 162 156 return (CombinedOperator)GetInitializationOperator().SubOperators[0];
Note: See TracChangeset
for help on using the changeset viewer.