Advertisement
Guest User

CFG

a guest
Apr 1st, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. INITIAL
  2.  
  3. j = 0 {BB1}
  4. -----------------------
  5. WHILE i = 0 to 10 DO {BB2}
  6. -----------------------
  7. j = i + 1 {BB3}
  8. END DO
  9. -----------------------
  10. ... {BB4}
  11.  
  12.  
  13. RESULT
  14.  
  15. j0 = 0 {BB1}
  16. -----------------------
  17. WHILE i1 = 0 to 10 DO {BB2}
  18. -----------------------
  19. j1 = phi(j2, j0) {BB3}
  20. j2 = i1 + 1
  21. END DO
  22. -----------------------
  23. ... {BB4}
  24.  
  25.  
  26. ↓-----------------|
  27. BB1 ------> BB2 ----> BB3 -----↑
  28. |-------> BB4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement