Changeset 17112
- Timestamp:
- 07/08/19 15:39:29 (5 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk merged: 16784,16794
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Optimization merged: 16784,16794
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization/3.3/BasicProblems/MultiObjectiveBasicProblem.cs
r17097 r17112 21 21 22 22 using System.Linq; 23 using HEAL.Attic; 23 24 using HeuristicLab.Common; 24 25 using HeuristicLab.Core; 25 26 using HeuristicLab.Data; 26 27 using HeuristicLab.Parameters; 27 using HEAL.Attic;28 28 29 29 namespace HeuristicLab.Optimization { … … 59 59 60 60 protected override void OnOperatorsChanged() { 61 base.OnOperatorsChanged();62 61 if (Encoding != null) { 63 62 PruneSingleObjectiveOperators(Encoding); … … 69 68 } 70 69 } 70 base.OnOperatorsChanged(); 71 71 } 72 72 -
stable/HeuristicLab.Optimization/3.3/BasicProblems/SingleObjectiveBasicProblem.cs
r17097 r17112 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.