HOME

TheInfoList



OR:

In
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to Applied science, practical discipli ...
, communicating sequential processes (CSP) is a
formal language In logic, mathematics, computer science, and linguistics, a formal language consists of words whose letters are taken from an alphabet and are well-formed according to a specific set of rules. The alphabet of a formal language consists of sym ...
for describing patterns of interaction in concurrent systems. It is a member of the family of mathematical theories of concurrency known as process algebras, or process calculi, based on
message passing In computer science, message passing is a technique for invoking behavior (i.e., running a program) on a computer. The invoking program sends a message to a process (which may be an actor or object) and relies on that process and its supporting ...
via channels. CSP was highly influential in the design of the occam programming language and also influenced the design of programming languages such as
Limbo In Catholic theology, Limbo (Latin '' limbus'', edge or boundary, referring to the edge of Hell) is the afterlife condition of those who die in original sin without being assigned to the Hell of the Damned. Medieval theologians of Western Euro ...
, RaftLib, Erlang, Go,
Crystal A crystal or crystalline solid is a solid material whose constituents (such as atoms, molecules, or ions) are arranged in a highly ordered microscopic structure, forming a crystal lattice that extends in all directions. In addition, macro ...
, and
Clojure Clojure (, like ''closure'') is a dynamic and functional dialect of the Lisp programming language on the Java platform. Like other Lisp dialects, Clojure treats code as data and has a Lisp macro system. The current development process is comm ...
's core.async. CSP was first described in a 1978 article by
Tony Hoare Sir Charles Antony Richard Hoare (Tony Hoare or C. A. R. Hoare) (born 11 January 1934) is a British computer scientist who has made foundational contributions to programming languages, algorithms, operating systems, formal verification, and ...
, but has since evolved substantially. CSP has been practically applied in industry as a tool for specifying and verifying the concurrent aspects of a variety of different systems, such as the T9000
Transputer The transputer is a series of pioneering microprocessors from the 1980s, intended for parallel computing. To support this, each transputer had its own integrated memory and serial communication links to exchange data with other transputers. T ...
, as well as a secure ecommerce system. The theory of CSP itself is also still the subject of active research, including work to increase its range of practical applicability (e.g., increasing the scale of the systems that can be tractably analyzed).


History

The version of CSP presented in Hoare's original 1978 article was essentially a concurrent programming language rather than a process calculus. It had a substantially different
syntax In linguistics, syntax () is the study of how words and morphemes combine to form larger units such as phrases and sentences. Central concerns of syntax include word order, grammatical relations, hierarchical sentence structure ( constituenc ...
than later versions of CSP, did not possess mathematically defined semantics, and was unable to represent
unbounded nondeterminism In computer science, unbounded nondeterminism or unbounded indeterminacy is a property of concurrency by which the amount of delay in servicing a request can become unbounded as a result of arbitration of contention for shared resources ''while ...
. Programs in the original CSP were written as a parallel composition of a fixed number of sequential processes communicating with each other strictly through synchronous message-passing. In contrast to later versions of CSP, each process was assigned an explicit name, and the source or destination of a message was defined by specifying the name of the intended sending or receiving process. For example, the process COPY = * :character; west?c → east!c repeatedly receives a character from the process named west and sends that character to process named east. The parallel composition , X::COPY , , east::ASSEMBLE assigns the names west to the DISASSEMBLE process, X to the COPY process, and east to the ASSEMBLE process, and executes these three processes concurrently. Following the publication of the original version of CSP, Hoare, Stephen Brookes, and A. W. Roscoe developed and refined the ''theory'' of CSP into its modern, process algebraic form. The approach taken in developing CSP into a process algebra was influenced by Robin Milner's work on the Calculus of Communicating Systems (CCS) and conversely. The theoretical version of CSP was initially presented in a 1984 article by Brookes, Hoare, and Roscoe, and later in Hoare's book ''Communicating Sequential Processes'', which was published in 1985. In September 2006, that book was still th
third-most cited
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to Applied science, practical discipli ...
reference of all time according to Citeseer (albeit an unreliable source due to the nature of its sampling). The theory of CSP has undergone a few minor changes since the publication of Hoare's book. Most of these changes were motivated by the advent of automated tools for CSP process analysis and verification. Roscoe's ''The Theory and Practice of Concurrency'' describes this newer version of CSP.


Applications

An early and important application of CSP was its use for specification and verification of elements of the INMOS T9000
Transputer The transputer is a series of pioneering microprocessors from the 1980s, intended for parallel computing. To support this, each transputer had its own integrated memory and serial communication links to exchange data with other transputers. T ...
, a complex superscalar pipelined processor designed to support large-scale multiprocessing. CSP was employed in verifying the correctness of both the processor pipeline and the Virtual Channel Processor, which managed off-chip communications for the processor. Industrial application of CSP to software design has usually focused on dependable and safety-critical systems. For example, the Bremen Institute for Safe Systems and Daimler-Benz Aerospace modeled a fault-management system and avionics interface (consisting of about 23,000 lines of code) intended for use on the International Space Station in CSP, and analyzed the model to confirm that their design was free of deadlock and livelock. The modeling and analysis process was able to uncover a number of errors that would have been difficult to detect using testing alone. Similarly,
Praxis High Integrity Systems Altran UK (formerly known as Altran Praxis, Praxis High Integrity Systems, Praxis Critical Systems, Altran Xype, Xype and Altran Technologies) is a division of parent company Altran. Altran Praxis was a British software house that specialised in c ...
applied CSP modeling and analysis during the development of software (approximately 100,000 lines of code) for a secure smart-card certification authority to verify that their design was secure and free of deadlock. Praxis claims that the system has a much lower defect rate than comparable systems. Since CSP is well-suited to modeling and analyzing systems that incorporate complex message exchanges, it has also been applied to the verification of communications and security protocols. A prominent example of this sort of application is Lowe’s use of CSP and the FDR refinement-checker to discover a previously unknown attack on the Needham–Schroeder public-key authentication protocol, and then to develop a corrected protocol able to defeat the attack.


Informal description

As its name suggests, CSP allows the description of systems in terms of component processes that operate independently, and interact with each other solely through
message-passing In computer science, message passing is a technique for invoking behavior (i.e., running a program) on a computer. The invoking program sends a message to a process (which may be an actor or object) and relies on that process and its supporting ...
communication. However, the ''"Sequential"'' part of the CSP name is now something of a misnomer, since modern CSP allows component processes to be defined both as sequential processes, and as the parallel composition of more primitive processes. The relationships between different processes, and the way each process communicates with its environment, are described using various process algebraic operators. Using this algebraic approach, quite complex process descriptions can be easily constructed from a few primitive elements.


Primitives

CSP provides two classes of primitives in its process algebra: ;Events :Events represent communications or interactions. They are assumed to be indivisible and instantaneous. They may be atomic names (e.g. ''on'', ''off''), compound names (e.g. ''valve.open'', ''valve.close''), or input/output events (e.g. ''mouse?xy'', ''screen!bitmap''). ;Primitive processes: :Primitive processes represent fundamental behaviors: examples include ''STOP'' (the process that communicates nothing, also called deadlock), and ''SKIP'' (which represents successful termination).


Algebraic operators

CSP has a wide range of algebraic operators. The principal ones are: ; Prefix : The prefix operator combines an event and a process to produce a new process. For example, :: a \to P : is the process that is willing to communicate with its environment and, after , behaves like the process . ; Deterministic choice : The deterministic (or external) choice operator allows the future evolution of a process to be defined as a choice between two component processes and allows the environment to resolve the choice by communicating an initial event for one of the processes. For example, :: (a \to P) \Box (b \to Q) : is the process that is willing to communicate the initial events and and subsequently behaves as either or , depending on which initial event the environment chooses to communicate. If both and were communicated simultaneously, the choice would be resolved nondeterministically. ; Nondeterministic choice : The nondeterministic (or internal) choice operator allows the future evolution of a process to be defined as a choice between two component processes, but does not allow the environment any control over which one of the component processes will be selected. For example, :: (a \to P) \sqcap (b \to Q) : can behave like either (a \to P) or (b \to Q). It can refuse to accept or and is only obliged to communicate if the environment offers both and . Nondeterminism can be inadvertently introduced into a nominally deterministic choice if the initial events of both sides of the choice are identical. So, for example, :: (a \to a \to \text) \Box (a \to b \to \text) : is equivalent to :: a \to \big((a \to \text) \sqcap (b \to \text)\big) ; Interleaving : The interleaving operator represents completely independent concurrent activity. The process :: P \;, , , \; Q : behaves as both and simultaneously. The events from both processes are arbitrarily interleaved in time. ; Interface parallel : The interface parallel operator represents concurrent activity that requires synchronization between the component processes: any event in the interface set can only occur when ''all'' component processes are able to engage in that event. For example, the process :: P \;, \; Q : requires that and must both be able to perform event before that event can occur. So, for example, the process :: (a \to P) \;, \; (a \to Q) : can engage in event and become the process :: P \;, \; Q : while :: (a \to P ) \;, \; (b \to Q) : will simply deadlock. ; Hiding : The hiding operator provides a way to abstract processes by making some events unobservable. A trivial example of hiding is :: (a \to P) \setminus \ : which, assuming that the event doesn't appear in , simply reduces to :: P


Examples

One of the archetypal CSP examples is an abstract representation of a chocolate vending machine and its interactions with a person wishing to buy some chocolate. This vending machine might be able to carry out two different events, “coin” and “choc” which represent the insertion of payment and the delivery of a chocolate respectively. A machine which demands payment (only in cash) before offering a chocolate can be written as: :\mathrm = \mathrm \rightarrow \mathrm \rightarrow \mathrm A person who might choose to use a coin or card to make payments could be modelled as: :\mathrm = (\mathrm \rightarrow \mathrm) \Box (\mathrm \rightarrow \mathrm) These two processes can be put in parallel, so that they can interact with each other. The behaviour of the composite process depends on the events that the two component processes must synchronise on. Thus, :\mathrm \left\vert\left left\\rightright\vert \mathrm \equiv \mathrm \rightarrow \mathrm \rightarrow \mathrm whereas if synchronization was only required on “coin”, we would obtain :\mathrm \left\vert\left left\\rightright\vert \mathrm \equiv \left (\mathrm \rightarrow \mathrm \rightarrow \mathrm\right ) \Box \left (\mathrm \rightarrow \mathrm\right ) If we abstract this latter composite process by hiding the “coin” and “card” events, i.e. :\left (\left (\mathrm \rightarrow \mathrm \rightarrow \mathrm\right ) \Box \left (\mathrm \rightarrow \mathrm\right )\right ) \setminus \left\ we get the nondeterministic process :\left (\mathrm \rightarrow \mathrm\right ) \sqcap \mathrm This is a process which either offers a “choc” event and then stops, or just stops. In other words, if we treat the abstraction as an external view of the system (e.g., someone who does not see the decision reached by the person), nondeterminism has been introduced.


Formal definition


Syntax

The syntax of CSP defines the “legal” ways in which processes and events may be combined. Let be an event, and be a set of events. Then the basic
syntax In linguistics, syntax () is the study of how words and morphemes combine to form larger units such as phrases and sentences. Central concerns of syntax include word order, grammatical relations, hierarchical sentence structure ( constituenc ...
of CSP can be defined as: : \begin & ::= & \mathrm & \; \\ &, & \mathrm & \; \\ &, & e \rightarrow & (\text)\\ &, & \;\Box\; & (\text \; \text)\\ &, & \;\sqcap\; & (\text \; \text)\\ &, & \;\vert\vert\vert\; & (\text) \\ &, & \;, \ \; & (\text \; \text)\\ &, & \setminus X & (\text)\\ &, & ; & (\text \; \text)\\ &, & \mathrm \; b \; \mathrm \; \; \mathrm\; Proc & (\text \; \text)\\ &, & \;\triangleright\; & (\text)\\ &, & \;\triangle\; & (\text) \end Note that, in the interests of brevity, the syntax presented above omits the \mathbf process, which represents
divergence In vector calculus, divergence is a vector operator that operates on a vector field, producing a scalar field giving the quantity of the vector field's source at each point. More technically, the divergence represents the volume density of ...
, as well as various operators such as alphabetized parallel, piping, and indexed choices.


Formal semantics

CSP has been imbued with several different formal semantics, which define the ''meaning'' of syntactically correct CSP expressions. The theory of CSP includes mutually consistent
denotational semantics In computer science, denotational semantics (initially known as mathematical semantics or Scott–Strachey semantics) is an approach of formalizing the meanings of programming languages by constructing mathematical objects (called ''denotations' ...
, algebraic semantics, and operational semantics.


Denotational semantics

The three major denotational models of CSP are the ''traces'' model, the ''stable failures'' model, and the ''failures/divergences'' model. Semantic mappings from process expressions to each of these three models provide the denotational semantics for CSP. The ''traces model'' defines the meaning of a process expression as the set of sequences of events (traces) that the process can be observed to perform. For example, :* \mathrm\left(\mathrm\right) = \left\ since \mathrm performs no events :* \mathrm\left(a\rightarrow b \rightarrow \mathrm\right) = \left\ since the process (a\rightarrow b \rightarrow \mathrm) can be observed to have performed no events, the event , or the sequence of events followed by More formally, the meaning of a process in the traces model is defined as \mathrm\left(P\right) \subseteq \Sigma^ such that: # \langle\rangle \in \mathrm\left(P\right) (i.e. \mathrm\left(P\right) contains the empty sequence) # s_1 \smallfrown s_2 \in \mathrm\left(P\right) \implies s_1 \in \mathrm\left(P\right) (i.e. \mathrm\left(P\right) is prefix-closed) where \Sigma^ is the set of all possible finite sequences of events. The ''stable failures model'' extends the traces model with refusal sets, which are sets of events X \subseteq \Sigma that a process can refuse to perform. A ''failure'' is a pair \left(s,X\right), consisting of a trace , and a refusal set which identifies the events that a process may refuse once it has executed the trace . The observed behavior of a process in the stable failures model is described by the pair \left(\mathrm\left(P\right), \mathrm\left(P\right)\right). For example, :* \mathrm\left(\left(a \rightarrow \mathrm\right) \Box \left(b \rightarrow \mathrm\right)\right) = \left\ :* \mathrm\left(\left(a \rightarrow \mathrm\right) \sqcap \left(b \rightarrow \mathrm\right)\right) = \left\ The ''failures/divergence model'' further extends the failures model to handle
divergence In vector calculus, divergence is a vector operator that operates on a vector field, producing a scalar field giving the quantity of the vector field's source at each point. More technically, the divergence represents the volume density of ...
. The semantics of a process in the failures/divergences model is a pair \left(\mathrm_\perp\left(P\right), \mathrm\left(P\right)\right) where \mathrm\left(P\right) is defined as the set of all traces that can lead to divergent behavior and \mathrm_\perp\left(P\right) = \mathrm\left(P\right) \cup \left\.


Tools

Over the years, a number of tools for analyzing and understanding systems described using CSP have been produced. Early tool implementations used a variety of machine-readable syntaxes for CSP, making input files written for different tools incompatible. However, most CSP tools have now standardized on the machine-readable dialect of CSP devised by Bryan Scattergood, sometimes referred to as CSP''M''. The CSP''M'' dialect of CSP possesses a formally defined operational semantics, which includes an embedded
functional programming language In computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions. It is a declarative programming paradigm in which function definitions are trees of expressions that ...
. The most well-known CSP tool is probably ''Failures/Divergence Refinement 2'' (''
FDR2 FDR (Failures-Divergences Refinement) and subsequently FDR2, FDR3 and FDR4 are refinement checking software tools, designed to check formal models expressed in Communicating sequential processes (CSP). The tools were originally developed by Fo ...
''), which is a commercial product developed by Formal Systems (Europe) Ltd. FDR2 is often described as a model checker, but is technically a ''refinement'' checker, in that it converts two CSP process expressions into Labelled Transition Systems (LTSs), and then determines whether one of the processes is a refinement of the other within some specified semantic model (traces, failures, or failures/divergence). FDR2 applies various state-space compression algorithms to the process LTSs in order to reduce the size of the state-space that must be explored during a refinement check. FDR2 has been succeeded by FDR3, a completely re-written version incorporating amongst other things parallel execution and an integrated type checker. It is released by the University of Oxford, which also released FDR2 in the period 2008-12. The ''Adelaide Refinement Checker'' (''ARC'') is a CSP refinement checker developed by the Formal Modelling and Verification Group at The University of Adelaide. ARC differs from FDR2 in that it internally represents CSP processes as Ordered Binary Decision Diagrams (OBDDs), which alleviates the state explosion problem of explicit LTS representations without requiring the use of state-space compression algorithms such as those used in FDR2. The ''ProB'' project, which is hosted by the Institut für Informatik, Heinrich-Heine-Universität Düsseldorf, was originally created to support analysis of specifications constructed in the B method. However, it also includes support for analysis of CSP processes both through refinement checking, and LTL model-checking. ProB can also be used to verify properties of combined CSP and B specifications. A ProBE CSP Animator is integrated in FDR3. The ''Process Analysis Toolkit'' (PAT) is a CSP analysis tool developed in the School of Computing at the
National University of Singapore The National University of Singapore (NUS) is a national public research university in Singapore. Founded in 1905 as the Straits Settlements and Federated Malay States Government Medical School, NUS is the oldest autonomous university in th ...
. PAT is able to perform refinement checking, LTL model-checking, and simulation of CSP and Timed CSP processes. The PAT process language extends CSP with support for mutable shared variables, asynchronous message passing, and a variety of fairness and quantitative time related process constructs such as deadline and waituntil. The underlying design principle of the PAT process language is to combine a high-level specification language with procedural programs (e.g. an event in PAT may be a sequential program or even an external C# library call) for greater expressiveness. Mutable shared variables and asynchronous channels provide a convenient syntactic sugar for well-known process modelling patterns used in standard CSP. The PAT syntax is similar, but not identical, to CSP''M''. The principal differences between the PAT syntax and standard CSP''M'' are the use of semicolons to terminate process expressions, the inclusion of syntactic sugar for variables and assignments, and the use of slightly different syntax for internal choice and parallel composition. ''VisualNets'' produces animated visualisations of CSP systems from specifications, and supports timed CSP. ''CSPsim'' is a lazy simulator. It does not model check CSP, but is useful for exploring very large (potentially infinite) systems.
SyncStitch
is a CSP refinement checker with interactive modeling and analyzing environment. It has a graphical state-transition diagram editor. The user can model the behavior of processes as not only CSP expressions but also state-transition diagrams. The result of checking are also reported graphically as computation-trees and can be analyzed interactively with peripheral inspecting tools. In addition to refinement checks, It can perform deadlock check and livelock check.


Related formalisms

Several other specification languages and formalisms have been derived from, or inspired by, the classic untimed CSP, including:

which incorporates timing information for reasoning about real-time systems
Receptive Process Theory
a specialization of CSP that assumes an asynchronous (i.e. nonblocking) send operation
CSPP

HCSP


an integration of Timed CSP and Object Z
Circus
an integration of CSP and Z based on the
Unifying Theories of Programming Unifying Theories of Programming (UTP) in computer science deals with program semantics. It shows how denotational semantics, operational semantics and algebraic semantics can be combined in a unified framework for the formal specification, des ...

CML
(COMPASS Modelling Language), a combination o
Circus
and VDM developed for the modelling of Systems of Systems (SoS)
CspCASL
an extension of CASL that integrates CSP * LOTOS, an international standard that incorporates features of CSP and CCS.
PALPS
a probabilistic extension with locations for ecological models developed by Anna Philippou and


Comparison with the actor model

In as much as it is concerned with concurrent processes that exchange messages, the
actor model The actor model in computer science is a mathematical model of concurrent computation that treats ''actor'' as the universal primitive of concurrent computation. In response to a message it receives, an actor can: make local decisions, create mor ...
is broadly similar to CSP. However, the two models make some fundamentally different choices with regard to the primitives they provide: * CSP processes are anonymous, while actors have identities. * CSP uses explicit channels for message passing, whereas actor systems transmit messages to named destination actors. These approaches may be considered duals of each other, in the sense that processes receiving through a single channel effectively have an identity corresponding to that channel, while the name-based coupling between actors may be broken by constructing actors that behave as channels. * CSP message-passing fundamentally involves a rendezvous between the processes involved in sending and receiving the message, i.e. the sender cannot transmit a message until the receiver is ready to accept it. In contrast, message-passing in actor systems is fundamentally asynchronous, i.e. message transmission and reception do not have to happen at the same time, and senders may transmit messages before receivers are ready to accept them. These approaches may also be considered duals of each other, in the sense that rendezvous-based systems can be used to construct buffered communications that behave as asynchronous messaging systems, while asynchronous systems can be used to construct rendezvous-style communications by using a message/acknowledgement protocol to synchronize senders and receivers. Note that the aforementioned properties do not necessarily refer to the original CSP paper by Hoare, but rather the modern incarnation of the idea as seen in implementations such as Golang and Clojure's core.async. In the original paper, channels were not a central part of the specification, and the sender and receiver processes actually identify each other by name.


Award

In 1990, “A
Queen Queen or QUEEN may refer to: Monarchy * Queen regnant, a female monarch of a Kingdom ** List of queens regnant * Queen consort, the wife of a reigning king * Queen dowager, the widow of a king * Queen mother, a queen dowager who is the mother ...
’s Award for Technological Achievement has been conferred ... on xford UniversityComputing Laboratory. The award recognises a successful collaboration between the laboratory and Inmos Ltd. … Inmos’ flagship product is the ‘
transputer The transputer is a series of pioneering microprocessors from the 1980s, intended for parallel computing. To support this, each transputer had its own integrated memory and serial communication links to exchange data with other transputers. T ...
’, a
microprocessor A microprocessor is a computer processor where the data processing logic and control is included on a single integrated circuit, or a small number of integrated circuits. The microprocessor contains the arithmetic, logic, and control circ ...
with many of the parts that would normally be needed in addition built into the same single
component Circuit Component may refer to: •Are devices that perform functions when they are connected in a circuit.   In engineering, science, and technology Generic systems * System components, an entity with discrete structure, such as an assem ...
.” According to Tony Hoare, “The INMOS Transputer was as embodiment of the ideas … of building microprocessors that could communicate with each other along wires that would stretch between their terminals. The founder had the vision that the CSP ideas were ripe for industrial exploitation, and he made that the basis of the language for programming Transputers, which was called Occam. … The company estimated it enabled them to deliver the hardware one year earlier than would otherwise have happened. They applied for and won a Queen’s award for technological achievement, in conjunction with Oxford University Computing Laboratory.”


See also

*
Trace theory In mathematics and computer science, trace theory aims to provide a concrete mathematical underpinning for the study of concurrent computation and process calculi. The underpinning is provided by an algebraic definition of the free partially c ...
, the general theory of traces. *
Trace monoid In computer science, a trace is a set of strings, wherein certain letters in the string are allowed to commute, but others are not. It generalizes the concept of a string, by not forcing the letters to always be in a fixed order, but allowing certa ...
and history monoid * Ease programming language * XC programming language * VerilogCSP is a set of macros added to Verilog HDL to support communicating sequential processes channel communications. * Joyce is a programming language based on the principles of CSP, developed by
Brinch Hansen Per Brinch Hansen (13 November 1938 – 31 July 2007) was a Danish-American computer scientist known for his work in operating systems, concurrent programming and parallel and distributed computing. Biography Early life and education Per ...
around 1989. * SuperPascal is a programming language also developed by
Brinch Hansen Per Brinch Hansen (13 November 1938 – 31 July 2007) was a Danish-American computer scientist known for his work in operating systems, concurrent programming and parallel and distributed computing. Biography Early life and education Per ...
, influenced by CSP and his earlier work with Joyce. *
Ada Ada may refer to: Places Africa * Ada Foah, a town in Ghana * Ada (Ghana parliament constituency) * Ada, Osun, a town in Nigeria Asia * Ada, Urmia, a village in West Azerbaijan Province, Iran * Ada, Karaman, a village in Karaman Province, T ...
implements features of CSP such as the rendezvous. * DirectShow is the video framework inside
DirectX Microsoft DirectX is a collection of application programming interfaces (APIs) for handling tasks related to multimedia, especially game programming and video, on Microsoft platforms. Originally, the names of these APIs all began with "Direct" ...
, it uses the CSP concepts to implement the audio and video filters. * OpenComRTOS is a formally developed network-centric distributed
RTOS A real-time operating system (RTOS) is an operating system (OS) for real-time applications that processes data and events that have critically defined time constraints. An RTOS is distinct from a time-sharing operating system, such as Unix, which ...
based on a pragmatic superset of CSP. *
Input/output automaton Input/output automata provide a formal model, applicable in describing most types of an asynchronous concurrent system. On its own, the I/O automaton model contains a very basic structure that enables it to model various types of distributed system ...
* Parallel programming model * TLA+ is another formal language for modelling and verifying concurrent systems.


References


Further reading

* ** This book has been updated by Jim Davies at the Oxford University Computing Laboratory and the new edition is available for download as a PDF file at th
Using CSP
website. * ** Some links relating to this book are availabl
here
The full text is available for download as
PS
o
PDF
file from Bill Roscoe'

of academic publications.


External links


A PDF version of Hoare's CSP book
– Copyright restriction apply, see the page text before downloading.
The Annotation of CSP(Chinese Version)
Non-profit translation and annotation work based on Prentice-Hall book(1985), Chaochen Zhou's Chinese Version(1988) and Jim Davies's online version(2015).
WoTUG
a User Group for CSP and occam style systems, contains some information about CSP and useful links.
CSP Citations from CiteSeer
{{DEFAULTSORT:Communicating sequential processes Computer-related introductions in 1978 1978 in computing Process calculi Concurrent computing