Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/10 01:39:32 (14 years ago)
Author:
mkommend
Message:

added operator graph tab page to EngineAlgorithmView (ticket #973)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/EngineAlgorithm.cs

    r3303 r3361  
    3636    [Storable]
    3737    private OperatorGraph operatorGraph;
    38     protected OperatorGraph OperatorGraph {
     38    public OperatorGraph OperatorGraph {
    3939      get { return operatorGraph; }
    40       set {
     40      protected set {
    4141        if (value == null) throw new ArgumentNullException();
    4242        if (value != operatorGraph) {
     
    194194        EngineChanged(this, EventArgs.Empty);
    195195    }
    196     protected virtual void OnOperatorGraphChanged() { }
     196    public event EventHandler OperatorGraphChanged;
     197    protected virtual void OnOperatorGraphChanged() {
     198      EventHandler handler = OperatorGraphChanged;
     199      if (handler != null) handler(this, EventArgs.Empty);
     200    }
    197201    protected override void OnStopped() {
    198202      if (Problem != null) {
Note: See TracChangeset for help on using the changeset viewer.