jskri

Results 2 issues of jskri

I want to use a C API in a pipeline of coroutines communicating through channels. This is my first try with coroutines and my knowledge of them is limited. The...

Consider the following spec: ```tla ---------------------- MODULE Test ------------------------- EXTENDS Naturals VARIABLES count Init == count = 0 Incr(N) == count' = count + N Next == Incr(1) \/ Incr(2)...