Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/24/11 17:12:08 (14 years ago)
Author:
cfischer
Message:

Implemented automatic adaptation of maximization parameter for symbolic regression and classification problems; Added new maximization property in symbolic regression and classification evaluators. #1381

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/SymbolicRegressionProblem.cs

    r5331 r5365  
    124124      ParameterizeEvaluator();
    125125      ParameterizeAnalyzers();
     126      ParameterizeProblem();
    126127      RaiseEvaluatorChanged(e);
    127128    }
     
    192193      }
    193194    }
     195
     196    private void ParameterizeProblem() {
     197      if (MaximizationParameter.Value != null) {
     198        MaximizationParameter.Value.Value = Evaluator.Maximization;
     199      } else {
     200        MaximizationParameter.Value = new BoolValue(Evaluator.Maximization);
     201      }
     202    }
    194203    #endregion
    195204  }
Note: See TracChangeset for help on using the changeset viewer.