Free cookie consent management tool by TermsFeed Policy Generator

Changeset 16752


Ignore:
Timestamp:
04/03/19 16:06:10 (5 years ago)
Author:
abeham
Message:

#2521: added comment to P3

  • removed todos from EvaluationServiceClientView
Location:
branches/2521_ProblemRefactoring
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/ParameterlessPopulationPyramid.cs

    r16723 r16752  
    2525using System.Linq;
    2626using System.Threading;
     27using HEAL.Attic;
    2728using HeuristicLab.Analysis;
    2829using HeuristicLab.Common;
     
    3233using HeuristicLab.Optimization;
    3334using HeuristicLab.Parameters;
    34 using HEAL.Attic;
    3535using HeuristicLab.Random;
    3636
     
    4646      get { return typeof(SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector>); }
    4747    }
     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
    4850    public new SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector> Problem {
    4951      get { return (SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector>)base.Problem; }
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation.Views/3.4/EvaluationServiceClientView.cs

    r16723 r16752  
    3636      InitializeComponent();
    3737    }
    38 
    39     protected override void DeregisterContentEvents() {
    40       // TODO: Deregister your event handlers here
    41       base.DeregisterContentEvents();
    42     }
    43 
    44     protected override void RegisterContentEvents() {
    45       base.RegisterContentEvents();
    46       // TODO: Register your event handlers here
    47     }
    48 
    49     #region Event Handlers (Content)
    50     // TODO: Put event handlers of the content here
    51     #endregion
    52 
    53     protected override void OnContentChanged() {
    54       base.OnContentChanged();
    55       if (Content == null) {
    56         // TODO: Add code when content has been changed and is null
    57       } else {
    58         // TODO: Add code when content has been changed and is not null
    59       }
    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 readonly
    65     }
    66 
    67     #region Event Handlers (child controls)
    68     // TODO: Put event handlers of child controls here.
    69     #endregion
    7038  }
    7139}
Note: See TracChangeset for help on using the changeset viewer.