Changeset d4a60ac for doc/papers


Ignore:
Timestamp:
Mar 25, 2019, 10:07:13 AM (5 years ago)
Author:
tdelisle <tdelisle@…>
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:
5b993e0
Parents:
7a8f5246 (diff), e73d449 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
doc/papers/concurrency/examples
Files:
6 added
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • doc/papers/concurrency/examples/Fib.py

    r7a8f5246 rd4a60ac  
    1 def Fibonacci():
     1def Fib():
    22        fn = 0; fn1 = fn; yield fn  # suspend
    33        fn = 1; fn2 = fn1; fn1 = fn; yield fn
     
    77
    88
    9 f1 = Fibonacci()
    10 f2 = Fibonacci()
     9f1 = Fib()
     10f2 = Fib()
    1111for i in range( 10 ):
    1212        print( next( f1 ), next( f2 ) )  # resume
  • doc/papers/concurrency/examples/FibRefactor.py

    r7a8f5246 rd4a60ac  
    1 def Fibonacci():
     1def Fib():
    22        def Refactor():
    3                 nonlocal fn, fn1, fn2
     3                nonlocal fn, fn1
    44                fn = 0; fn1 = fn
    55                yield fn                                                # suspend
     6
    67        def Refactor2():
    78                nonlocal fn, fn1, fn2
     
    1415                fn = fn1 + fn2; fn2 = fn1; fn1 = fn; yield fn
    1516
    16 f1 = Fibonacci()
    17 f2 = Fibonacci()
     17f1 = Fib()
     18f2 = Fib()
    1819for i in range( 10 ):
    1920        print( next( f1 ), next( f2 ) )         # resume
  • doc/papers/concurrency/examples/Format.cc

    r7a8f5246 rd4a60ac  
    3131// Local Variables: //
    3232// tab-width: 4 //
    33 // fill-column: 120 //
    3433// compile-command: "u++-work -O2 -nodebubg Format.cc" //
    3534// End: //
  • doc/papers/concurrency/examples/Pingpong.py

    r7a8f5246 rd4a60ac  
    1 i = 0
     1def Scheduler
     2try:
     3        yield from ping();
     4        yield from pong();
     5except StopIteration:
     6        print( "Scheduler stop" )
     7
     8
    29def pong():
    3         global i
    410        print( "pong" )
    5         if i < 4:
     11for i in range( 10 ):
     12
    613                yield from ping()
    714        print( "stop pong" )
  • doc/papers/concurrency/examples/ProdCons.cfa

    r7a8f5246 rd4a60ac  
    7373// Local Variables: //
    7474// tab-width: 4 //
    75 // fill-column: 120 //
    76 // compile-command: "cfa ProdCons.c" //
     75// compile-command: "cfa ProdCons.cfa" //
    7776// End: //
Note: See TracChangeset for help on using the changeset viewer.