- Timestamp:
- 01/24/11 17:12:08 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Symbolic/SymbolicClassificationProblem.cs
r5333 r5365 199 199 ParameterizeEvaluator(); 200 200 ParameterizeAnalyzers(); 201 ParameterizeProblem(); 201 202 base.OnEvaluatorChanged(); 202 203 } … … 340 341 } 341 342 } 343 344 private void ParameterizeProblem() { 345 if (Maximization != null) { 346 Maximization.Value = Evaluator.Maximization; 347 } else { 348 Maximization = new BoolValue(Evaluator.Maximization); 349 } 350 } 342 351 #endregion 343 352 }
Note: See TracChangeset
for help on using the changeset viewer.