Changeset 16794 for trunk/HeuristicLab.Optimization
- Timestamp:
- 04/16/19 21:45:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Optimization/3.3/BasicProblems/SingleObjectiveBasicProblem.cs
r16565 r16794 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HEAL.Attic; 25 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Core; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.Parameters; 29 using HEAL.Attic;30 30 31 31 namespace HeuristicLab.Optimization { … … 95 95 96 96 protected override void OnOperatorsChanged() { 97 base.OnOperatorsChanged();98 97 if (Encoding != null) { 99 98 PruneMultiObjectiveOperators(Encoding); … … 105 104 } 106 105 } 106 base.OnOperatorsChanged(); 107 107 } 108 108
Note: See TracChangeset
for help on using the changeset viewer.