Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/15/09 16:36:48 (15 years ago)
Author:
gkronber
Message:

Fixed #742 (Consistent naming scheme for data-modeling engines).

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  
    8787    <Compile Include="HL3TreeEvaluatorInjector.cs" />
    8888    <Compile Include="HL2TreeEvaluatorInjector.cs" />
    89     <Compile Include="OffspringSelectionGP.cs" />
     89    <Compile Include="OffspringSelectionGPRegression.cs" />
    9090    <Compile Include="PredictorBuilder.cs" />
    9191    <Compile Include="Predictor.cs" />
     
    9898      <DependentUpon>PredictorView.cs</DependentUpon>
    9999    </Compile>
    100     <Compile Include="StandardGP.cs">
    101       <SubType>Code</SubType>
    102     </Compile>
     100    <Compile Include="StandardGPRegression.cs" />
    103101    <Compile Include="Symbols\Addition.cs" />
    104102    <Compile Include="Symbols\And.cs" />
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/OffspringSelectionGPRegression.cs

    r2356 r2361  
    3333
    3434namespace HeuristicLab.GP.StructureIdentification {
    35   public class OffspringSelectionGP : HeuristicLab.GP.Algorithms.OffspringSelectionGP, IAlgorithm {
     35  public class OffspringSelectionGPRegression : HeuristicLab.GP.Algorithms.OffspringSelectionGP, IAlgorithm {
    3636    public override string Name { get { return "OffspringSelectionGP - StructureIdentification"; } }
    3737
     
    7171    }
    7272
    73     public OffspringSelectionGP()
     73    public OffspringSelectionGPRegression()
    7474      : base() {
    7575      PunishmentFactor = 10.0;
     
    154154    }
    155155
    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 
    162156    protected CombinedOperator GetProblemInjector() {
    163157      return (CombinedOperator)GetInitializationOperator().SubOperators[0];
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/StandardGPRegression.cs

    r2356 r2361  
    3232
    3333namespace HeuristicLab.GP.StructureIdentification {
    34   public class StandardGP : HeuristicLab.GP.Algorithms.StandardGP, IAlgorithm {
     34  public class StandardGPRegression : HeuristicLab.GP.Algorithms.StandardGP, IAlgorithm {
    3535
    3636    public override string Name { get { return "StandardGP - StructureIdentification"; } }
     
    7171    }
    7272
    73     public StandardGP()
     73    public StandardGPRegression()
    7474      : base() {
    7575
     
    153153    }
    154154
    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 
    161155    protected CombinedOperator GetProblemInjector() {
    162156      return (CombinedOperator)GetInitializationOperator().SubOperators[0];
Note: See TracChangeset for help on using the changeset viewer.