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.Classification/3.3/Symbolic/SymbolicClassificationProblem.cs

    r5333 r5365  
    199199      ParameterizeEvaluator();
    200200      ParameterizeAnalyzers();
     201      ParameterizeProblem();
    201202      base.OnEvaluatorChanged();
    202203    }
     
    340341      }
    341342    }
     343
     344    private void ParameterizeProblem() {
     345      if (Maximization != null) {
     346        Maximization.Value = Evaluator.Maximization;
     347      } else {
     348        Maximization = new BoolValue(Evaluator.Maximization);
     349      }
     350    }
    342351    #endregion
    343352  }
Note: See TracChangeset for help on using the changeset viewer.