Changeset 16752
- Timestamp:
- 04/03/19 16:06:10 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/ParameterlessPopulationPyramid.cs
r16723 r16752 25 25 using System.Linq; 26 26 using System.Threading; 27 using HEAL.Attic; 27 28 using HeuristicLab.Analysis; 28 29 using HeuristicLab.Common; … … 32 33 using HeuristicLab.Optimization; 33 34 using HeuristicLab.Parameters; 34 using HEAL.Attic;35 35 using HeuristicLab.Random; 36 36 … … 46 46 get { return typeof(SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector>); } 47 47 } 48 // TODO: Type of this property should be ISingleObjectiveProblemDefinition instead of the SingleObjectiveProblem 49 // However, this requires that BasicAlgorithm's Problem property is also changed 48 50 public new SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector> Problem { 49 51 get { return (SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector>)base.Problem; } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation.Views/3.4/EvaluationServiceClientView.cs
r16723 r16752 36 36 InitializeComponent(); 37 37 } 38 39 protected override void DeregisterContentEvents() {40 // TODO: Deregister your event handlers here41 base.DeregisterContentEvents();42 }43 44 protected override void RegisterContentEvents() {45 base.RegisterContentEvents();46 // TODO: Register your event handlers here47 }48 49 #region Event Handlers (Content)50 // TODO: Put event handlers of the content here51 #endregion52 53 protected override void OnContentChanged() {54 base.OnContentChanged();55 if (Content == null) {56 // TODO: Add code when content has been changed and is null57 } else {58 // TODO: Add code when content has been changed and is not null59 }60 }61 62 protected override void SetEnabledStateOfControls() {63 base.SetEnabledStateOfControls();64 // TODO: Enable or disable controls based on whether the content is null or the view is set readonly65 }66 67 #region Event Handlers (child controls)68 // TODO: Put event handlers of child controls here.69 #endregion70 38 } 71 39 }
Note: See TracChangeset
for help on using the changeset viewer.