Calculus of communicating systems
|
|
This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (November 2011) |
The Calculus of Communicating Systems (CCS) is a process calculus introduced by Robin Milner around 1980 and the title of a book describing the calculus. Its actions model indivisible communications between exactly two participants. The formal language includes primitives for describing parallel composition, choice between actions and scope restriction. CCS is useful for evaluating the qualitative correctness of properties of a system such as deadlock or livelock.[1]
According to Milner, "There is nothing canonical about the choice of the basic combinators, even though they were chosen with great attention to economy. What characterises our calculus is not the exact choice of combinators, but rather the choice of interpretation and of mathematical framework".
The expressions of the language are interpreted as a labelled transition system. Between these models, bisimilarity is used as a semantic equivalence.
[edit] Syntax
Given a set of action names, the set of CCS processes is defined by the following BNF grammar:
The parts of the syntax are, in the order given above
- empty process
- the empty process
is a valid CCS process - action
- the process a.P1 can perform an action a and continue as the process P1
- process identifier
- write
to use the identifier A to refer to the process P1 (which may contain the identifier A itself, i.e., recursive definitions are allowed) - choice
- the process P1 + P2 can proceed either as the process P1 or the process P2
- parallel composition
- P1 | P2 tells that processes P1 and P2 exist simultaneously
- renaming
- P1[b / a] is the process P1 with all actions named a renamed as b
- restriction
is the process P1 without action a
[edit] Related calculi and models
- Communicating Sequential Processes (CSP), developed by Tony Hoare, is a language that arose at a similar time to CCS.
- The pi-calculus, developed by Milner in the late 80's, provides mobility of communication links by allowing processes to communicate the names of communication channels themselves.
- PEPA, developed by Jane Hillston introduces activity timing and probabilistic choice, allowing performance metrics to be evaluated.
Some other languages based on CCS:
Models that have been used in the study of CCS-like systems:
[edit] References
- Robin Milner: A Calculus of Communicating Systems, Springer Verlag, ISBN 0-387-10235-3. 1980.
- Robin Milner, Communication and Concurrency, Prentice Hall, International Series in Computer Science, ISBN 0-131-15007-3. 1989
- ^ Herzog, Ulrich, ed. (May 2007). "Tackling Large State Spaces in Performance Modelling". Formal Methods for Performance Evaluation. Lecture Notes in Computer Science. 4486. Springer. pp. 318–370. doi:10.1007/978-3-540-72522-0. http://aesop.doc.ic.ac.uk/pubs/large-state-spaces/. Retrieved 2009-04-21.
![P ::= \emptyset\,\,\, | \,\,\,a.P_1\,\,\, | \,\,\,A\,\,\, | \,\,\,P_1+P_2\,\,\, | \,\,\,P_1|P_2\,\,\, | \,\,\,P_1[b/a]\,\,\, | \,\,\,P_1{\backslash}a\,\,\,](http://upload.wikimedia.org/wikipedia/en/math/3/9/4/3948f74d929372c23a60c050f24866e1.png)
is a valid CCS process
to use the identifier
is the process