Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/10/14 02:35:44 (10 years ago)
Author:
swagner
Message:

#2205: Worked on optimization networks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks/3.3/InputPort.cs

    r11431 r11438  
    8888      if (outputPort != null) {
    8989        outputPort.ValueChanged += OutputPort_ValueChanged;
    90         outputPort.PathChanged += OutputPort_PathChanged;
    9190      }
    9291    }
     
    9493      if (outputPort != null) {
    9594        outputPort.ValueChanged -= OutputPort_ValueChanged;
    96         outputPort.PathChanged -= OutputPort_PathChanged;
    9795      }
    9896    }
     
    105103      //DISCUSS: switch threads to decouple value propagation and to make communication asynchronous -> should be done in Node?
    106104    }
    107     protected void OutputPort_PathChanged(object sender, EventArgs e) {
    108       OnOutputPortChanged();
    109     }
    110105  }
    111106}
Note: See TracChangeset for help on using the changeset viewer.