Changeset e73d449 for doc/papers/concurrency
- Timestamp:
- Mar 22, 2019, 3:45:28 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 1097bb7, d4a60ac
- Parents:
- f8cd310
- Location:
- doc/papers/concurrency/examples
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/concurrency/examples/Fib.py
rf8cd310 re73d449 1 def Fib onacci():1 def Fib(): 2 2 fn = 0; fn1 = fn; yield fn # suspend 3 3 fn = 1; fn2 = fn1; fn1 = fn; yield fn … … 7 7 8 8 9 f1 = Fib onacci()10 f2 = Fib onacci()9 f1 = Fib() 10 f2 = Fib() 11 11 for i in range( 10 ): 12 12 print( next( f1 ), next( f2 ) ) # resume -
doc/papers/concurrency/examples/FibRefactor.py
rf8cd310 re73d449 1 def Fib onacci():1 def Fib(): 2 2 def Refactor(): 3 nonlocal fn, fn1 , fn23 nonlocal fn, fn1 4 4 fn = 0; fn1 = fn 5 5 yield fn # suspend 6 6 7 def Refactor2(): 7 8 nonlocal fn, fn1, fn2 … … 14 15 fn = fn1 + fn2; fn2 = fn1; fn1 = fn; yield fn 15 16 16 f1 = Fib onacci()17 f2 = Fib onacci()17 f1 = Fib() 18 f2 = Fib() 18 19 for i in range( 10 ): 19 20 print( next( f1 ), next( f2 ) ) # resume -
doc/papers/concurrency/examples/Format.cc
rf8cd310 re73d449 31 31 // Local Variables: // 32 32 // tab-width: 4 // 33 // fill-column: 120 //34 33 // compile-command: "u++-work -O2 -nodebubg Format.cc" // 35 34 // End: //
Note: See TracChangeset
for help on using the changeset viewer.