Sharing graphs are another kind of string diagram which focuses on the syntax of a language. Given a BNF description of a context-free grammar, we get a category whose objects are (roughly) lists of subterms and whose morphisms are rules for composing the subterms into terms.
::=
where is a countably infinite set of variables. (That is, a term is either a given variable, a given term applied to a given term, or the -abstraction of a given term as a function of a given variable.) There are three equivalences on terms, (for handling dummy variables), (substitution of terms), and (extensionality). The corresponding category has
two generating types, and
six function symbols
relations
The last three function symbols come with relations that make the category cartesian (and justify the use of above). Leaving off the last two would give linear lambda calculus.
This is the categorical encoding of
where the free variables of the term are .
The string diagrams corresponding to this category are called sharing graphs.
Peter Selinger said of this example:
“Sharing graphs” are extremely well-studied. See e.g.
(1) Stefano Guerrini, A general theory of sharing graphs (1997)
There is a reduction strategy on sharing graphs that is provably the most efficient possible reduction strategy for lambda calculus; this goes back to the work of Levy and Lamping (both cited in the above paper).
Guerrini also gives an algebraic semantics of these sharing graphs, see section 7. I don’t know whether it is related to your categorical view.
I also like the book by Peyton-Jones:
(2) Simon Peyton Jones, The Implementation of Functional Programming Languages (1987)
It shows how to use sharing graphs as the basis for a practical implementation of lazy programming languages. As far as I know, this is still state-of-the-art and is used in the implementation of Haskell. In keeping with the practical nature of the book, the sharing graphs are represented in slightly different form (with syntactic variables rather than backpointers), but this is of course equivalent.
As for the categorical semantics, what you have in mind is a kind of abstract syntax with variable binding. To put this into perspective, the semantics of ordinary abstract syntax (i.e., without variable binding), is given by an object in a cartesian category, together with interpretations for each -ary function symbol . One can then inductively define the interpretation of terms, speak of the free such object, etc.
Things get slightly more complicated if one adds variable binding to this picture. This has also been studied, though perhaps not in the same form as you are proposing. Perhaps the closest to your approach is
(3) Martin Hofmann, Semantical analysis of higher-order abstract syntax (1999)
Here one has , , and (see top of p.9, with the obvious changes in notation). You will note the use of a function space in place of your cartesian product .
Another very similar paper is
(4) M.P.Fiore, G.D.Plotkin and D.Turi. Abstract syntax and variable binding (1999) (Also available here.)
Here, one has , , and (as contained e.g. in the commutative diagram on p.6). Again, is something akin to the function space , but is also isomorphic, in a suitable sense, to , as far as I remember (this is important for substitution, see below).
A third, technically slightly different (but conceptually similar) approach to abstract syntax with variable binders is:
(5) Murdoch J. Gabbay, Andrew M. Pitts: A new approach to abstract syntax with variable binding (1999)
(6) Murdoch J. Gabbay, Andrew M. Pitts: A new approach to abstract syntax with variable binding (2002)
See especially the second-to-last line of [6, p.356], and you immediately see the similarity. Their operation is akin to in [3] and in [4].
It is fun to note that [3–5] all appeared (independently) in the same conference in 1999. Semantics of variable binders was clearly a pressing problem that year.
I can comment briefly on the main difference between these works and what you are proposing. One thing that is important in syntax is substitution (of a term for a variable). In fact, in the usual abstract syntax (without binders), a term with variables is represented as a morphism . This is useful for substitution: namely, if represents the term and represents , then represents .
In the presence of variables, a term with variables is represented as (in your notation). However, for reasons of substitution, one would still like this hom-set to be in 1-1 correspondence with . Somehow this is what the papers [3–6] manage to do, each in their own way.
I hope these references will be useful. It would be great if you had a more abstract monoidal framework of which the particular constructions in [3–6] are concrete examples. I have always wondered about the precise connection between [3–6], and whether there is a bigger picture.
Last revised on July 6, 2019 at 19:22:19. See the history of this page for a list of all contributions to it.