Graph Algebras for BigraphsWork funded by MIUR PRIN project ``SisteR'', prot. 20088HXMYN. Dedicated to the memory of Robin Milner (13 January 1934 -- 20 March 2010). Electronic Communications of the EASST Volume 29 (2010) Proceedings of the Ninth International Workshop on Graph Transformation and Visual Modeling Techniques (GT-VMT 2010) Graph Algebras for Bigraphs Davide Grohmann, Marino Miculan 17 pages Guest Editors: Jochen Küster, Emilio Tuosto Managing Editors: Tiziana Margaria, Julia Padberg, Gabriele Taentzer ECEASST Home Page: http://www.easst.org/eceasst/ ISSN 1863-2122 http://www.easst.org/eceasst/ ECEASST Graph Algebras for Bigraphs∗ Davide Grohmann1, Marino Miculan2 1 grohmann@dimi.uniud.it, 2 miculan@dimi.uniud.it Department of Mathematics and Computer Science, University of Udine, Italy Abstract: Binding bigraphs are a graphical formalism intended to be a meta-model for mobile, concurrent and communicating systems. In this paper we present an algebra of typed graph terms which correspond precisely to binding bigraphs over a given signature. As particular cases, pure bigraphs and local bigraphs are described by two sublanguages which can be given a simple syntactic characterization. Moreover, we give a formal connection between these languages and Synchronized Hyperedge Replacement algebras and the hierarchical graphs used in Architectural Design Rewriting. This allows to transfer results and constructions among for- malisms which have been developed independently, e.g., the systematic definition of congruent bisimulations for SHR graphs via the IPO construction. Keywords: Bigraphs, graph grammars, types. 1 Introduction Bigraphical Reactive Systems (BRSs) [Mil01] have been proposed as a promising meta-model for ubiquitous, mobile systems. The key feature of BRSs is that their states are bigraphs, semi- structured data which can represent at once both the (physical, logical) location and the connec- tions of the components of a system. The dynamics of the system is given by a set of rewrite rules on this semi-structured data. Bigraphs have been successfully used for representing many domain-specific calculi and mod- els, from traditional programming languages, to process calculi for concurrency and mobility, from context-aware systems to web-service orchestration languages—see e.g. [JM03, LM06, BDE+06, GM07, BGH+08]. In fact, many variants of bigraphs have been proposed: the original pure bigraphs have been later generalized into binding bigraphs, allowing also for name scoping; other variants have been proposed, such as local bigraphs used for studying the λ -calculus. In this paper, we propose a general typed language for binding bigraphs, which we recall in Section 2. More precisely, in Section 3 we define an algebra of typed graph terms, so that well- typed terms correspond to binding bigraphs, and congruence captures bigraphic equality; this interpretation and corresponding properties are exposed in Section 4. Moreover, as we will show in Section 5, the important subcategories of pure, local and prime bigraphs can be described by suitable sublanguages which can be given a simple and effective syntactic characterization. Finally, we show how this language can be tailored to formalisms introduced in literature (for quite different purposes). In Section 6 we consider hypergraphs used in Synchronized Hyperedge Rewriting [FHL+05] and the “designs” of Architectural Design Rewriting [BLMT07]. ∗ Work funded by MIUR PRIN project “SisteR”, prot. 20088HXMYN. Dedicated to the memory of Robin Milner (13 January 1934 – 20 March 2010). 1 / 17 Volume 29 (2010) mailto:grohmann@dimi.uniud.it mailto:miculan@dimi.uniud.it Graph Algebras for Bigraphs We have implemented the resulting algorithm in our BPL Tool, which we briefly describe in Section 6. We also present an example of a bigraphical reactive system, an encoding of the polyadic π calculus, and show how it can be used to simulate a simple model of a mobile phone system. Bigraphical reactive systems are related to general graph transformation systems; Ehrig et al. [10] provide a recent comprehensive overview of graph transformation systems. In particular, bigraph matching is related to the general graph pattern matching (GPM) problem, so general GPM algorithms might also be applicable to bigraphs [11, 14, 20, 21]. As an alternative to implementing matching for bigraphs, one could try to formalize bigraphical reactive systems as graph transformation systems and then use an existing implementation of graph transformation systems. Some promising steps in this direction have been taken [19], but they have so far fallen short of capturing precisely all the aspects of binding bigraphs. For a more detailed account of related work, in particular on relations between BRSs, graph transformations, term rewriting and term graph rewriting, see the Thesis of Damgaard [8, Section 6]. The remainder of this paper is organized as follows. In Section 2 we give an informal presentation of bigraphical reactive systems and in Section 3 we present our matching algorithm: we first recall the graph-based inductive char- acterization, then we develop a term-based inductive characterization, which forms the basis for our implementation of matching. In Section 4 we describe how our implementation deals with the remaining nondeterminism and in Sec- tion 5 we discuss a couple of auxiliary technologies needed for the implementation of the term-based matching rules. In Section 6 we finally describe the BPL Tool and present an example use of it. We conclude and discuss future work in Section 7. 2. Bigraphs and Reactive Systems In the following, we present bigraphs informally; for a formal definition, see the work by Jensen and Milner [13] and Damgaard and Birkedal [9]. 2.1. Concrete Bigraphs A concrete binding bigraph G consists of a place graph GP and a link graph GL. The place graph is an ordered list of trees indicating location, with roots r0, . . . , rn, nodes v0, . . . , vk, and a number of special leaves s0, . . . , sm called sites, while the link graph is a general graph over the node set v0, . . . , vk extended with inner names x0, . . . , xl , and equipped with hyper edges, indicating connectivity. We usually illustrate the place graph by nesting nodes, as shown in the upper part of Figure 1 (ignore for now the interfaces denoted by “ : · →· ”). A link is a hyper edge of the link graph, either an internal edge e or a name y. Links Bigraph G : �3, [{},{},{x0, x2}], X� → �2, [{y0},{}],Y � 0 1 2 y0 y1 y2 x0 x2 x1 e2 v0 v1 v2 v3 e1 X ={x0, x1, x2} Y ={y0, y1, y2} Place graph GP : 3 → 2 roots: sites: r0 v0 v1 s0 v2 r1 v3 s2 s1 Link graph GL : X → Y names: inner names: y0 y1 y2 v0 v1 v2 v3 x0 x2 x1 e1 e2 Fig. 1. Example bigraph illustrated by nesting and as place and link graph. 2 Figure 1: A binding bigraph (picture taken from [BDGM07]). These results are useful for several reasons. First, the typed algebra we propose can be used as a language for binding, pure, local and prime bigraphs, alternative to the bigraph algebra [JM03]. Moreover, we confirm once more that bigraphs are a quite expressive general framework of ubiquitous systems. These connections pave the way for transferring results and constructions from bigraphs to the SHR and ADR frameworks, and vice versa, as suggested in Section 7. 2 Binding Bigraphs In this section we recall Milner’s binding bigraphs [JM03, JM04]. Intuitively, a binding bigraph represents an open system, so it has an inner and an outer interface to “interact” with subsystems and the surrounding environment (Figure 1). The width of the outer interface describes the roots, that is, the various locations containing the system components; the width of the inner interface describes the sites, that is, the holes where other bigraphs can be inserted. On the other hand, the names in the interfaces describe free links, that is end points where links from the outside world can be pasted, creating new links among nodes. In particular, we consider binding bigraphs with (possibly) multiply localized names, as in [Mil04] and slightly generalizing [JM03, JM04]. More formally, let K be a binding signature of controls (i.e., node types), and ar : K → N×N be the arity function. The arity pair (h, k) (written h → k) consists of the binding arity h and the free arity k, indexing respectively the binding and the free ports of a control. Definition 1 (Interfaces) An interface is a pair 〈m, X〉 where m is a finite ordinal (called width), X is a finite set of names. A binding interface is a triple 〈m, loc, X〉, where 〈m, X〉 is an interface and loc ⊆ m×X is a locality map associating a subset of the names in X with sites in m. If (s, x) ∈ loc then x is located at s, or local to s; x is global if, ∀s, (s, x) /∈ loc. Proc. GT-VMT 2010 2 / 17 ECEASST Sometime, we shall represent the locality map as a vector ~X = (X0, . . . , Xm−1) of subsets, where Xs is the set of names local to s; thus X \~X = X \(X0 ∪···∪Xm−1) are the global names. We call an interface local (resp. global) if all its names are local (resp. global). We denote by ] the union of already disjoint sets, i.e., S]T , S∪T if S∩T = /0, otherwise it is undefined. Definition 2 (Pure and binding bigraphs) A (pure) bigraph G : 〈m, X〉→〈n,Y〉 is composed by a place graph GP and a link graph GL describing node nesting and (hyper-)links among nodes: G = (V, E, ctrl, GP, GL) : 〈m, X〉→〈n,Y〉 (pure bigraph) GP = (V, ctrl, prnt) : m → n (place graph) GL = (V, E, ctrl, link) : X →Y (link graph) where V, E are the sets of nodes and edges respectively; ctrl : V → K is the control map, which assigns a control to each node; prnt : m]V → V ]n is the (acyclic) parent map (often written also as <); link : X ]P → E ]B]Y is the link map, where P = ∑v∈V π1(ar(ctrl(v))) is the set of ports and B = ∑v∈V π2(ar(ctrl(v))) is the set of bindings (associated to all nodes). A link l ∈ X ]P is bound if link(l) ∈ B; it is free if link(l) ∈Y ]E. A binding bigraph G : 〈m, loc, X〉→〈n, loc′,Y〉 is a (pure) bigraph Gu : 〈m, X〉→〈n,Y〉 satis- fying the following locality conditions: 1. if a link is bound, then the names and ports linked to it must lie within the node that binds it; 2. if a link is free, with outer name x, then x must be located in every region that contains any inner name or port of the link. Definition 3 (Binding bigraph category) The category of binding bigraphs over a signature K (written Bbg(K )) has local interfaces as objects, and binding bigraphs as morphisms. Given two binding bigraphs G : 〈m, loc, X〉→ 〈n, loc′,Y〉, H : 〈n, loc′,Y〉→ 〈k, loc′′, Z〉, the composition H◦G : 〈m, loc, X〉→〈k, loc′′, Z〉 is defined by composing their place and link graphs, whenever they have disjoint node and edge sets: 1. the composition of GP : m → n and H P : n → k is defined as H P ◦GP = (VG ]VH , ctrlG ]ctrlH , (idVG ] prntH )◦(prntG ]idVH )) : n → k; 2. the composition of GL : X →Y and H L : Y → Z is defined as H L ◦GL = (VG ]VH , EG ]EH , ctrlG ]ctrlH , (idEG ]linkH )◦(linkG ]idPH )) : X → Z. Definition 4 (Pure, local and prime bigraphs) The category of pure bigraphs (Big) is the full subcategory of Bbg whose objects are of the form 〈n, ( /0), X〉 (often shorten as 〈n, X〉). The category of local bigraphs (Lbg) is the full subcategory of binding bigraphs whose objects are of the form 〈n, (~X ),⋃~X〉 (often shorten as (~X )). The category of prime bigraphs (Pbg) is the full subcategory of local bigraphs whose objects are of the form 〈n, (~X ),⋃~X〉, with n ∈{0, 1}, (often shorten as before: (~X )). Intuitively, in pure bigraphs all names are global, whilst in local bigraphs all names are local, finally prime bigraphs are all the local bigraphs with one root, and one or zero holes. 3 / 17 Volume 29 (2010) Graph Algebras for Bigraphs An important operation about (bi)graphs, is the tensor product. Intuitively, the tensor prod- uct puts “side by side” two bigraphs, given G : 〈m, (~X ), X〉→〈n, (~Y ),Y〉 and H : 〈m′, (~X′), X′〉→ 〈n′, (~Y ′),Y ′〉, their tensor product is a bigraph G⊗H : 〈m+m′, (~X~X′), X∪X′〉→〈n+n′, (~Y~Y ′),Y ∪ Y ′〉 defined when global names in X , X′ and Y,Y ′ are disjoint. Two useful variants of tensor prod- uct can be defined using tensor and composition: the parallel product ‖, which merges shared names between two bigraphs, and the prime product |, that also merges all roots in a single one. As shown in [Mil04, DB06], all bigraphs can be constructed by composition and tensor product from a set of elementary bigraphs: • 1 : 〈0, ( /0), /0〉→〈1, ( /0), /0〉 is the barren (i.e., empty) root; • mergen : 〈n, ( /0), /0〉→〈1, ( /0), /0〉 merges n roots into a single one; • γm,n,(~X ,~Y ) : 〈m + n, (~X~Y ), ( ⋃ ~X )∪(⋃~Y )〉→〈m + n, (~Y ~X ), (⋃~X )∪(⋃~Y )〉 permutes the first m roots having local names in ~X with the following n roots with local names in ~Y . • /x : 〈0, ( /0),{x}〉→〈0, ( /0), /0〉 is a closure, that is it maps x to an edge; • y/X : 〈0, ( /0), X〉→〈0, ( /0),{y}〉 substitutes the names in X with y, i.e., it maps the whole set X to y; as a shortcuts, we write ~y/~X to mean y0/X0 ⊗. . .⊗yn−1/Xn−1; • pX q : 〈1, (X ), X〉→〈1, ( /0), X〉 means that names in X are switched from local to global • conversely, (X ) : 〈1, ( /0), X〉→〈1, (X ), X〉 localizes the global names of X . • Finally, K ~x(~X ) : 〈1, (X ), /0〉→〈1, ( /0),~x〉 is a control which may contain other graphs, and it has free ports linked to the name in ~x, whilst the names ~X are connected to its binding ports. We use the convention that local names are enclosed in parenthesises. Bigraphs can be given always in discrete normal form: the idea of this normal form is to separate wirings (i.e., linkings) from discrete bigraphs (i.e., nesting of nodes). The following is an easy generalization of [DB06, Theorem 1] to the case of bigraphs with multiply located names. Theorem 1 (Discrete Normal Form (DNF)) 1. Any binding bigraph G : I →〈n,~YB, ( ⋃ ~YB)]YF〉 can be expressed as G = (⊗ i