Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
language:langs:chp [2023/04/07 12:19] – [Syntactic replication] rajit | language:langs:chp [2024/07/20 16:36] (current) – [Advanced expression syntax] rajit | ||
---|---|---|---|
Line 86: | Line 86: | ||
In the published literature, non-deterministic selections are usually written using a thin bar '' | In the published literature, non-deterministic selections are usually written using a thin bar '' | ||
+ | |||
+ | ===== Arrays: dynamic v/s non-dynamic indices ===== | ||
+ | |||
+ | Suppose an array '' | ||
+ | <code act> | ||
+ | int x[10]; | ||
+ | </ | ||
+ | |||
+ | Now when '' | ||
+ | <code act> | ||
+ | chp { | ||
+ | ... | ||
+ | x[0] := x[0] + 1; | ||
+ | ... | ||
+ | } | ||
+ | </ | ||
+ | uses '' | ||
+ | <code act> | ||
+ | chp { | ||
+ | ... | ||
+ | x[i] := x[i] + 1; | ||
+ | ... | ||
+ | } | ||
+ | </ | ||
+ | uses '' | ||
+ | |||
===== Loops ===== | ===== Loops ===== | ||
Line 130: | Line 156: | ||
===== Advanced expression syntax ===== | ===== Advanced expression syntax ===== | ||
+ | |||
+ | ==== Bitslice assignment ==== | ||
+ | |||
+ | For integer-valued variables, one can assign to some of the bits. The syntax for this is: | ||
+ | |||
+ | <code act> | ||
+ | | ||
+ | ... | ||
+ | chp { | ||
+ | ... | ||
+ | x{4..2} := 4; | ||
+ | ... | ||
+ | } | ||
+ | </ | ||
+ | This will update three bits of '' | ||
+ | |||
+ | |||
==== Channels in expressions ==== | ==== Channels in expressions ==== | ||
Line 286: | Line 329: | ||
*[ C?c; [ ([] i : N : c = i -> I[i]?d) ]; O!d ] | *[ C?c; [ ([] i : N : c = i -> I[i]?d) ]; O!d ] | ||
</ | </ | ||
- | where '' | + | where '' |
====== The chp-txt sublanguage ====== | ====== The chp-txt sublanguage ====== |