You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
channels
a : int * int
process P = begin @ a.1.2 -> P end
the COMPASS tool will produce a type error. The problem is that the parser reads a.1.2 as the channel named a.(1.2) rather than a.(1).(2) → i.e. the parser sees a real number when it ought (in this case) see two integers separated by dots.
The text was updated successfully, but these errors were encountered:
Given the following CML example
the COMPASS tool will produce a type error. The problem is that the parser reads
a.1.2
as the channel nameda.(1.2)
rather thana.(1).(2)
→ i.e. the parser sees a real number when it ought (in this case) see two integers separated by dots.The text was updated successfully, but these errors were encountered: