Use Case: SR flip flop simulation

This use case demonstrates how the dependency mechanism copes with consistent feed back loops in digital circuits. Here it is shown with an SR flip flop. The use case illustrates the action with a sequence of 4 dependency calls. The state of each component (viz. n1 and n2) is shown in curly braces: {x,y,z}, where x and y are the state of the two inputs (input 1 followed by input 2) and z is the state of the output terminal. Initially all terminals are in the undefined state, so all components are in the state {u,u,u}. The SR flip flop is has the following truth table, which this circuit mimics.
 
S R Q Q'
1 1 Q(n-1) Q'(n-1)
1 0 0 1
0 1 1 0
0 0 u u