You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
Exercise 3.39: Which of the five possibilities
|
|
in the parallel execution shown above remain if we instead serialize execution
|
|
as follows:
|
|
|
|
|
|
(define x 10)
|
|
(define s (make-serializer))
|
|
(parallel-execute
|
|
(lambda ()
|
|
(set! x ((s (lambda () (* x x))))))
|
|
(s (lambda () (set! x (+ x 1)))))
|
|
|