Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/09/10 09:40:52 (14 years ago)
Author:
gkronber
Message:

Moved linear scaling functionality out of tree evaluator into a separate operator. #823 (Implement tree evaluator with linear scaling to improve convergence in symbolic regression.)

Location:
trunk/sources/HeuristicLab.Modeling/3.2
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Modeling/3.2/HeuristicLab.Modeling-3.2.csproj

    r2808 r2977  
    8484    <Compile Include="AnalyzerModel.cs" />
    8585    <Compile Include="BestSolutionStorer.cs" />
     86    <Compile Include="LinearScaler.cs" />
    8687    <Compile Include="SimpleStableCorrelationCoefficientEvaluator.cs" />
    8788    <Compile Include="SimplePearsonCorrelationCoefficientEvaluator.cs" />
  • trunk/sources/HeuristicLab.Modeling/3.2/SimpleEvaluatorBase.cs

    r2357 r2977  
    99namespace HeuristicLab.Modeling {
    1010  public abstract class SimpleEvaluatorBase : OperatorBase {
    11     protected const int ORIGINAL_INDEX = 0;
    12     protected const int ESTIMATION_INDEX = 1;
     11    public const int ORIGINAL_INDEX = 0;
     12    public const int ESTIMATION_INDEX = 1;
    1313
    1414    public virtual string OutputVariableName {
Note: See TracChangeset for help on using the changeset viewer.