Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/30/14 02:14:09 (10 years ago)
Author:
swagner
Message:

#2205: Worked on basic infrastructure for optimization networks

File:
1 edited

Legend:

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

    r11401 r11406  
    7979    }
    8080    protected void OutputPort_ValueChanged(object sender, EventArgs e) {
    81       Value = OutputPort.Value;
    82       //TODO: switch threads to decouple value propagation and to make communication asynchronous
    83       //TODO: clone value?
    84       //TODO: clone value?
     81      Value = (T)OutputPort.Value.Clone();
     82      //DISCUSS: clone value?
     83      //DISCUSS: switch threads to decouple value propagation and to make communication asynchronous -> should be done in Node?
    8584    }
    8685  }
Note: See TracChangeset for help on using the changeset viewer.