Mercurial > hg > Members > nobuyasu > Spin
view Samples/p104.1.pml @ 2:a2dac3fa7383 draft default tip
add Makefile
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 29 Jun 2012 06:22:47 +0900 |
parents | 86e67be8bc5f |
children |
line wrap: on
line source
#define N 128 #define size 16 chan inp = [size] of { short }; chan large = [size] of { short }; chan small = [size] of { short }; proctype split() { short cargo; do :: inp?cargo -> if :: (cargo >= N) -> large!cargo :: (cargo < N) -> small!cargo fi od } init { run split() }