Example #1
0
 /// <summary>
 /// Adds all dataflows of another aggregate dataflow to the set of parallel flows.
 /// </summary>
 /// <param name="other">aggregate dataflow</param>
 public void Integrate(ParFlow other)
 {
     foreach (var flow in other.Flows)
     {
         Add(flow);
     }
 }
Example #2
0
 /// <summary>
 /// Constructs a new instance.
 /// </summary>
 /// <param name="other">other aggregate flow from which to overtake the parallel flows</param>
 public ParFlow(ParFlow other)
 {
     _flows = new Dictionary <SignalRef, Flow>(other._flows);
 }