Theory Introduction
chapter ‹Introduction›
theory Introduction
imports "HOL-CSP_PTick"
begin
text ‹
Communicating Sequential Processes (CSP) offers a rich and expressive
framework for modeling and reasoning about concurrent systems.
Its denotational, operational, and algebraic facets are covered by the
sessions \<^session>‹HOL-CSP›~\<^cite>‹"HOL-CSP-AFP"›, \<^session>‹HOL-CSPM›~\<^cite>‹"HOL-CSPM-AFP"›,
\<^session>‹HOL-CSP_OpSem›~\<^cite>‹"HOL-CSP_OpSem-AFP"›, \<^session>‹HOL-CSP_RS›~ \<^cite>‹"HOL-CSP_RS-AFP"›,
and \<^session>‹HOL-CSP_PTick›.
These developments, initially following Roscoe’s presentation \<^cite>‹"roscoe:csp:1998"›,
have since evolved considerably to admit arbitrary types, infinite sets,
parameterized termination, and more.
However, this expressiveness comes with a cost:
proofs about complex or parametric process architectures
often become intricate and hard to scale.
Proc-Omata address this issue by slightly constraining the class
of processes in order to benefit from more powerful proof techniques.
First sketched in \<^cite>‹IFM_Dining_Phil› and properly
conceptualized in \<^cite>‹"ICTAC_Proc-Omata"›, the Proc-Omata framework consists
in embedding functional automata into CSP.
The resulting subclass of processes combines the expressive and compositional
features of CSP with automata-like properties
(reachability, enableness, absence of divergences),
making it particularly amenable to invariant reasoning.
In this entry we start by formalizing the basic notions of
functional automata such as reachability and enableness,
before introducing the definitions of Proc-Omata themselves.
For synchronization product and sequential composition,
we then provide combination functions that realize the effect
of CSP operators at the level of the underlying automata.
These translations are formally proved correct,
and culminate in compactification theorems,
which generalize the constructions inductively to architectural operators.
›
end