ebook img

SOS Meta-theory: A Very Short Introduction PDF

14 Pages·2008·0.16 MB·English
by  
Save to my drive
Quick download
Download
Most books are stored in the elastic cloud where traffic is expensive. For this reason, we have a limit on daily download.

Preview SOS Meta-theory: A Very Short Introduction

SOS Meta-theory: A Very Short Introduction Luca Aceto School of Computer Science Reykjavik University Kringlan 1, 103 Reykjavik, Iceland In all fields of science, researchers make progress by first studying in detail severalconcretescenariosandproblems. Oncethesespecificexampleshavebeen wellunderstood,thenextstepisoftentoisolatethecharacteristicsthattheyshare andthecommontechniquesthatunderlietheirstudy. Thisbringsaboutakeystep in any form of scientific endeavour, namely that of abstraction. We use abstrac- tion to get to the core of things, to strip the concrete scenarios of the details that are immaterial for certain properties to hold and results to apply, to realize that some specific phenomena may be found in several different settings simply be- cause, albeit possibly very different, those settings have some basic principles in common. In mathematics, one possible, and very classic, approach to generalizing re- sults is provided by the axiomatic method, as pioneered by Euclid already over 2000 years ago. Once proved from Euclid’s axioms for Euclidean geometry, a theorem holds true in every structure that satisfies the axioms. As Hilbert fa- mously stated, it does not really matter whether the symbols in the axioms are interpretedaspointsandlines,orastablesandchairs. Theonlythingthatmatters isthatwehaveamodeloftheaxioms. Now you may ask, ‘What does this have to do with our topic? Can this ap- proach to abstraction, namely the axiomatic method, be used to study the lan- guagesusedincomputerscienceand,inparticular,processdescriptionlanguages likeCCS,CSPandsoon?’ In some of your courses and/or in your research, you have seen a wealth of resultsapplyingtospecificprogrammingorspecificationlanguages. Forinstance, the textbook [2] offers several results for the language CCS [8]. An example of such a result is Theorem 3.2 in [2] to the effect that strong bisimilarity is a 1 congruence over CCS. Moreover, those amongst you who solved Exercise 3.15 in [2] have already seen that strong bisimilarity is also preserved by at least one other operator that is not included in the syntax for the language CCS. But there are many more operators out there for which this property holds! You should, for instance,beabletoconvinceyourselfwithverylittleeffortthatthe(not-so-useful) operationa-and-b()definedbytherule: a b P → P , P → P 1 2 a a-and-b(P) → P +P 1 2 preserves bisimilarity—that is, that a-and-b(P) ∼ a-and-b(Q) holds whenever P ∼ Q. (Doso!) Canwegeneralize thesecongruenceresults? What doweneedtodo so? And how do we even approach such a question? Let us start by defining a general framework that can be used to abstract the essence of the concrete languages you havemetsofar. We begin by observing that all languages consist of a syntax and a semantics. The syntax of a language can be described by giving the collection of operations it offers for constructing new ‘programs’ from ones that we have already built. For example, the syntax of CCS can be specified by listing the collection of op- erations used in the BNF grammar for that language, together with the number of arguments that each such operation is supposed to take. Following the termi- nology of (universal) algebra, we call this set of operations the signature for the languageCCS. Ingeneral,asignatureΣconsistsofacollectionofoperationsymbolstogether with their arities—that is, the number of arguments the operation symbol takes. An operation symbol of arity zero is usually called a constant symbol. For in- stance,0isaconstantsymbolinthesignatureforCCS. Example1 The signature Σ consists of the constant Z, the unary operation Nat symbolsuccandthebinaryoperationsymbol∨. Inwhatfollows,wewillwrite∨ ininfixform—thatis,weuset∨uinsteadof∨(t,u). (cid:7) Example2 ThesignatureΣ consistsoftheconstantsδ,εanda,andthebinary BPA operation symbols · and +. In what follows, we will write t·u and t+u instead of·(t,u)and+(t,u),respectively. WewillsometimesrefertothelanguagewithsignatureΣ asBPA(forBasic BPA ProcessAlgebra)—see,e.g.,[4]. (cid:7) 2 Ingeneral,givenasignatureΣandacollectionofvariablesV,thelanguageasso- ciatedwithΣisthesetoftermsT(Σ)thatcanbeconstructedusingthefollowing rules: • ifx ∈ V thenx ∈ T(Σ), • if n ≥ 0, t ,...,t ∈ T(Σ) and f ∈ Σ has arity n, then f(t ,...,t ) ∈ 1 n 1 n T(Σ)and • nothingelseisinT(Σ). ThesetoftermsT(Σ)canbeequivalentlyspecifiedbytheBNFgrammarbelow: t ::= x | f(t ,...,t ) , 1 n wherex ∈ V,andf ∈ Σhasarityn. We say that a term t ∈ T(Σ) is closed, when it does not contain occurrences ofvariables. Exercise1 Give examples of closed terms in T(Σ ) and T(Σ ). How many Nat BPA closedtermsdoesT(Σ)containifthesignatureΣhasnoconstantsymbols? (cid:7) A (closed) substitution maps variables in V to (closed) terms. For every term t and substitution σ, the term σ(t) is obtained by replacing every occurrence of a variablexintbyσ(x). Notethatσ(t)isclosedifσ isaclosedsubstitution. We now turn to a general tool for the description of the semantics of a lan- guage. Our aim is to generalize the rule-based approach that we have followed in giving the semantics of a calculus like CCS. In this approach, the semantics of a language is given by a labelled transition system (see Definition 2.1 on page 19 in [2]) whose states are the closed terms in T(Σ), and whose transitions between termsarethosethatcanprovedtoexistusingacollectionofrulesR. By way of example, let us consider the collection of rules on Table 1, which describe the operational semantics of the operations in the signature Σ . Intu- BPA (cid:88) itively, transitions of the form P → P(cid:48) indicate that process P may terminate its computation successfully, whereas transitions of the form P →a P(cid:48) say that pro- cess P may perform action a thereby evolving into process P(cid:48). So, for instance, processacanperformactionaandthenterminatesuccessfullysinceitaffordsthe followingsequenceoftransitions: a (cid:88) a → ε → δ . 3 ACT a a → ε TERM (cid:88) ε → δ P →α P(cid:48) SUM1 α P +Q → P(cid:48) Q →α Q(cid:48) SUM2 α P +Q → Q(cid:48) P →a P(cid:48) SEQ1 a P ·Q → P(cid:48) ·Q P →(cid:88) P(cid:48) Q →α Q(cid:48) SEQ2 α P ·Q → Q(cid:48) Table1: SOSrulesforT(Σ )(α ∈ {a,(cid:88)}) BPA Exercise2 Prove that strong bisimilarity is preserved by all the operators in Σ —that is, show that if P ∼ Q and P ∼ Q then P + P ∼ Q + Q BPA 1 1 2 2 1 2 1 2 andP ·P ∼ Q ·Q bothhold. (cid:7) 1 2 1 2 The rules on Table 1, like those on Table 2.2 on page 24 in [2] have the general formbelow. Premises Conclusion In the above rule template, we expect that both the premises and the conclusion willdescribeconstraintsonthetransitionsthatarepossibleforclosedterms. How- ever, it is somewhat unlikely that we can develop a useful theory of semantic lan- guagespecificationsbyconsideringruletemplatesofsuchgenerality. Howcanwe 4 achieveareasonablelevelofabstractionwhileatthesametimepreciselydefining what rules are allowed, so that we can prove theorems about classes of languages using them? Once more, we draw inspiration from the classic axiomatic method and logic. We are going to define a collection of constraints over rules, and then show that any operation or language, whose semantics is given by rules that obey those constraints, has some desirable property that we intend to investigate. This generalapproachisbestintroducedbymeansofaconcreteexample. Let us look once more at the rules describing the operational semantics of the operations of CCS and BPA. All those rules define the transitions of a composite term in terms of the transitions that are possible for their immediate components. For instance, the initial transitions of a term of the form P · Q can be inferred usingrulesSEQ1–2onTable1fromtheinitialtransitionsofP andQ. Moreover, in the conclusion of a rule, the term that is the target of the transition does not contain any meta-variable that is the source of a premise. For example, in rule SEQ1 on Table 1, the target of the conclusion of the rule, namely P(cid:48) · Q, does not contain P. Note, however, that P(cid:48) · Q contains P(cid:48), which is a meta-variable standing for the target of the transition of P that is the premise of rule SEQ1. Intuitively, terms whose transitions are premises of rules are ‘consumed’ during thattransitionandarenotusedinthetargetoftheconclusionsofoperationalrules. Anotherfeatureoftheruleswehaveseensofaristhatthemeta-variablesinarule are all pairwise distinct. Finally, we note that in each of the rules for CCS and BPA, there is at most one premise describing assumptions on the behaviour of eachoftheargumentsofanoperation,andeachmeta-variableoccursinthetarget ofaruleatmostonce. Theanalysisabovesuggeststhatwelookatruleshavingthefollowingform: {x →ai y | i ∈ I} i i , (1) a f(x ,...,x ) → t 1 n where • I isincludedin{1,...,n}, • aanda ,i ∈ I,areactions, i • thevariablesx ,...,x andy ,i ∈ I,areallpairwisedistinctand 1 n i • t is a term over our signature of interest which may contain variables y , i i ∈ I, and those x with j ∈ {1,...,n} − I. Moreover, t contains each j variableatmostonce. 5 You should pause for a moment, and check that all of the rules for CCS and BPA satisfy the requirements above. Note, moreover, that if f is a constant symbol, theneachruleoftheform(1)forf isanaxiom—thatis,ithasnopremises. The constraints on operational rules laid out in (1) are an example of a rule format. Aruleformatgivescriteriaonoperationalrulesthatweexpectthoserules tofulfill. Theruleformatdescribedbyruleslikethosein(1)isusuallyreferredto as the de Simone format because it was introduced by de Simone in his seminal paper [10]. To the best of my knowledge, it is the first example ever of a rule formatinthefieldofStructuralOperationalSemantics. Definition1 A de Simone language is a pair (Σ,R), where Σ is a signature and R isacollectionofrulesoverΣoftheform(1). (cid:7) Asmentionedbefore,adeSimonelanguage(Σ,R)ismeanttodescribealabelled transition system whose states are the closed terms that can be constructed using theoperationsinthesignatureΣ,andwhosetransitionsbetweenclosedtermsare those that can be proved using the rules in R. For the sake of clarity, we now proceed to define precisely the collection of transitions that can be proved from R. Definition2 Let (Σ,R) be a de Simone language. The collection of transitions provable from R is the smallest set T of transitions of the form P →a P(cid:48), where P and P(cid:48) are closed terms over Σ and a is an action, that satisfies the following property: IftherearearuleinRoftheform(1),andaclosedsubstitutionσsuch that σ(x ) →ai σ(y ) is in T for each i ∈ I, then σ(f(x ,...,x )) →a i i 1 n σ(t)isalsoinT. (cid:7) Exercise3 Convince yourself that there is, in fact, a smallest set satisfying the conditionstatedinthedefinitionabove. (cid:7) Inhispaper[10],deSimoneshowedthateachoperationthatcanbedefinedusing rules of the form (1) can be described by terms in the languages MEIJE [3] and SCCS [7]. (In case you are wondering what MEIJE and SCCS stand for, SCCS is an acronym for Synchronous Calculus of Communicating Systems. On the other hand, Meije is a mountain in the French Alps.) So, in this specific sense, thoseprocesscalculiareexpressivelycompletewithrespecttooperationsthatcan 6 be defined using rules of the form (1). In fact, achieving this result informed the design choices underlying the isolation of the set of basic operations in the language MEIJE. Ourconcernhere,however,istousetheruleformatswediscusstoprovegen- eral results pertaining to the congruence properties of strong bisimilarity. Does everyoperationspecifiedusingrulesindeSimoneformatpreservestrongbisimi- larity? Wenowproceedtoprovideapositiveanswertothisquestion. Definition3 Let σ and σ(cid:48) be two closed substitutions. We write σ ∼ σ(cid:48) when σ(x) ∼ σ(cid:48)(x)foreachx ∈ V. (cid:7) Theorem1 Let (Σ,R) be a de Simone language. Then strong bisimilarity is a congruence—that is, f(P ,...,P ) ∼ f(Q ,...,Q ) holds, for each f ∈ Σ of 1 n 1 n arityn,andtermsP ,Q suchthatP ∼ Q foreach1 ≤ i ≤ n. i i i i Proof: Let R be the smallest relation over the set of closed terms over Σ that satisfiesthefollowingclauses: 1. ∼isincludedinR,and 2. ifP RQ foreach1 ≤ i ≤ nandf ∈ Σhasarityn,thenf(P ,...,P )R i i 1 n f(Q ,...,Q ). 1 n Note that, by the definition of R, we have that f(P ,...,P ) R f(Q ,...,Q ) 1 n 1 n holdswheneverP ∼ Q foreach1 ≤ i ≤ n. (Why?) Infact, i i σ(t)Rσ(cid:48)(t) (2) holds for all substitutions σ and σ(cid:48) such that σ ∼ σ(cid:48) and for each term t ∈ T(Σ). (Do not take my word for this claim; make sure you convince yourself that this property does hold!) Therefore, to prove the theorem it suffices only to show that the relation R defined above is a bisimulation. (See [2, Definition 3.2].) Since R issymmetric,ourclaimfollowsfromthefollowingstatement: (∗)AssumethatP RQandP →a P(cid:48) forsomeP(cid:48). Thenthere isaQ(cid:48) suchthatQ →a Q(cid:48) andP(cid:48) RQ(cid:48). ThiswenowproceedtoprovebyinductiononthedefinitionofR. IfP RQbecauseP ∼ Q,thentheabovestatementfollowsimmediatelyfrom thefactthat∼isitselfabisimulation–see,e.g.,[2,Theorem3.1]. Assume therefore that P R Q because, for some operation f of arity n, and closedtermsP ,...,P ,Q ,...,Q , 1 n 1 n 7 1. P = f(P ,...,P ), 1 n 2. Q = f(Q ,...,Q )and 1 n 3. P RQ foreach1 ≤ i ≤ n. i i Suppose, furthermore that P →a P(cid:48) for some P(cid:48). We shall show that there is a Q(cid:48) such that Q →a Q(cid:48) and P(cid:48) R Q(cid:48). By item 3 above, in doing so, we may assume thatproperty(∗)holdstruefortransitionsofeachP ,1 ≤ i ≤ n. i SincethetransitionP = f(P ,...,P ) →a P(cid:48) isprovablefromtherulesinR, 1 n therearearuler oftheform(1)inR andaclosedsubstitutionσ suchthat • σ(x ) = P ,foreach1 ≤ i ≤ n, i i • σ(x ) →ai σ(y ),foreachi ∈ I,and i i • σ(t) = P(cid:48). Ourorderofbusinessnowwillbetousetheruler toderiveamatchingtransition fromQ = f(Q ,...,Q ). 1 n To this end, consider a transition P = σ(x ) →ai σ(y ), for some i ∈ I. Since i i i P R Q and, by the inductive hypothesis, property (∗) holds true for transitions i i ofeachP ,thereissomeQ(cid:48) suchthatQ →ai Q(cid:48) andσ(y )RQ(cid:48). Notethatwecan i i i i i i findsuchaQ(cid:48) foreachpremiseoftherule. i Definenowtheclosedsubstitutionσ(cid:48) asfollows:  Q ifz = x forsome1 ≤ i ≤ n,  i i σ(cid:48)(z) = Q(cid:48) ifz = y forsomei ∈ I, i i  σ(z) otherwise. Since,foreachi ∈ I,wehavethat σ(cid:48)(x ) = Q →ai Q(cid:48) = σ(cid:48)(y ) , i i i i the substitution σ(cid:48) satisfies all the premises of the rule. So, using the rule, we can inferthetransition Q = f(Q ,...,Q ) →a σ(cid:48)(t) . 1 n Observe that, by construction, σ ∼ σ(cid:48). Therefore, by (2), P(cid:48) = σ(t)Rσ(cid:48)(t), and wearedone. (cid:50) 8 Notethat,intheproofoftheabovetheorem,wehavenotusedatalltheassumption thateachvariableoccursatmostonceinthetargetofadeSimonerule. Itfollows that the result we have just shown holds for a generalization of the de Simone format in which this constraint on the allowed rules is lifted. In what follows, we will see one further generalization of the theorem above. Before doing so, however, it is instructive to examine some generalizations of the the de Simone ruleformatforwhichTheorem1fails. OneoftheconstraintsinthedeSimoneruleformatisthatallthevariablesap- pearing in rules be different. It is natural to ask oneself whether this requirement is necessary to prove Theorem 1. To see the need for the distinctness require- ment for variables, let us add a binary operation eq to the language BPA, whose operationalsemanticsisdescribedbytherulebelow. a eq(x,x) → δ ThisruleisnotindeSimoneformat,anddoesnotpreservestrongbisimilarity. For example, you should have no problem in checking that a and a+a are bisimilar. a However,eq(a,a) → δ,whereaseq(a,a+a)affordsnotransition. Intuitively,the problem with the above rule is that it allows one to check whether the two argu- ments of the eq operation are syntactically equal. This means that the behaviour oftermsoftheformeq(P,Q)isdeterminedbythesyntaxoftheargumentsrather thanbytheirbehaviour. Exercise4 Consider the language with the operations ω, ∞, f and g whose be- haviourisdefinedbythefollowingrules. a a a x → x x → y, x → y 1 2 a a a a ω → ω ∞ → ω f(x) → δ g(x ,x ) → δ 1 2 Arguethatneitherf norg preservesstrongbisimilarity. (cid:7) Let us now turn our attention to the signature Σ . Intuitively, the constant Z Nat stands for the number 0, the unary operation succ is the successor function over the natural numbers, and ∨ stands for the maximum of two numbers. Let us assume that the behaviour of a closed term t over this signature is to display a sequence of n consecutive a transitions, where n is the ‘value’ of the expression t. For example, we would expect the term succ(Z) to afford a single a-labelled 9 transition, and the term succ(Z) ∨ succ(succ(Z)) to afford two consecutive a- labelledtransitions. Forthesuccoperation,wecancaptureourintuitioneasilyby meansofthefollowingaxiomindeSimoneformat. a succ(x) → x Moreover, we expect that Z has no rule associated with it since that term has no outgoing transition. But what are the rules for the ∨ operation? One rule that immediatelycomestomindisthefollowing. a a x → y , x → y 1 1 2 2 a x ∨x → y ∨y 1 2 1 2 For instance, using this rule and the one for succ, we can prove the following transition: a succ(Z)∨succ(succ(Z)) → Z∨succ(Z) . Wewouldnowexpectthatthetargetoftheabovetransition,namelytheterm Z∨succ(Z) , afford one more a-labelled transition and that it terminate in doing so. However, the only rule for the ∨ operation that we have at our disposal so far is not appli- cable to that term, since Z affords no transitions whatsoever. What we would like to have is a rule that states that a term t ∨ u also affords an a-labelled transition when one of the arguments of ∨ does so, and the other has ‘terminated’. Since termination is characterized by the absence of a-labelled transitions, two natural rulescapturingourintuitionare x →a y , x (cid:57)a x (cid:57)a , x →a y 1 1 2 1 2 2 , a a x ∨x → y x ∨x → y 1 2 1 1 2 2 where, for a term t, we write t (cid:57)a to mean that t has no outgoing a-labelled tran- sition. Forinstance,usingthelatterrule,wewouldbeabletoinferthetransition a Z∨succ(Z) → Z . The above set of rules gives a natural specification of the expected behaviour of terms over the signature Σ . However, the rules we have used are not in Nat de Simone format, and use negative premises—that is, premises that refer to the 10

Description:
SOS Meta-theory: A Very Short Introduction. Luca Aceto .. the design choices underlying the isolation of the set of basic operations in the language MEIJE.
See more

The list of books you might like

Most books are stored in the elastic cloud where traffic is expensive. For this reason, we have a limit on daily download.