1
1

More than 5 years have passed since last update.

[SyncStitch]TimedCSP"Wait[t]"

Last updated at Posted at 2014-04-17

Timed CSPで追加定義されるプロセスを自前で作る。

Wait.ss
; Definitions
(define-event ti)

; Wait
(define-process (Wait t)
  (if (> t 0)
      (! ti (Wait (- t 1)))
      (! ti SKIP)))

(define-process Test (Wait 5))
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1