Skip to main content
Erschienen in:
Buchtitelbild

Open Access 2019 | OriginalPaper | Buchkapitel

Distributive Disjoint Polymorphism for Compositional Programming

verfasst von : Xuan Bi, Ningning Xie, Bruno C. d. S. Oliveira, Tom Schrijvers

Erschienen in: Programming Languages and Systems

Verlag: Springer International Publishing

Aktivieren Sie unsere intelligente Suche, um passende Fachinhalte oder Patente zu finden.

search-config
loading …

Abstract

Popular programming techniques such as shallow embeddings of Domain Specific Languages (DSLs), finally tagless or object algebras are built on the principle of compositionality. However, existing programming languages only support simple compositional designs well, and have limited support for more sophisticated ones.
This paper presents the \(\mathsf {F}_{i}^{+}\) calculus, which supports highly modular and compositional designs that improve on existing techniques. These improvements are due to the combination of three features: disjoint intersection types with a merge operator; parametric (disjoint) polymorphism; and BCD-style distributive subtyping. The main technical challenge is \(\mathsf {F}_{i}^{+}\)’s proof of coherence. A naive adaptation of ideas used in System F’s parametricity to canonicity (the logical relation used by \(\mathsf {F}_{i}^{+}\) to prove coherence) results in an ill-founded logical relation. To solve the problem our canonicity relation employs a different technique based on immediate substitutions and a restriction to predicative instantiations. Besides coherence, we show several other important meta-theoretical results, such as type-safety, sound and complete algorithmic subtyping, and decidability of the type system. Remarkably, unlike \(\mathsf {F}_{<:}\)’s bounded polymorphism, disjoint polymorphism in \(\mathsf {F}_{i}^{+}\) supports decidable type-checking.

1 Introduction

Compositionality is a desirable property in programming designs. Broadly defined, it is the principle that a system should be built by composing smaller subsystems. For instance, in the area of programming languages, compositionality is a key aspect of denotational semantics [48, 49], where the denotation of a program is constructed from the denotations of its parts. Compositional definitions have many benefits. One is ease of reasoning: since compositional definitions are recursively defined over smaller elements they can typically be reasoned about using induction. Another benefit is that compositional definitions are easy to extend, without modifying previous definitions.
Programming techniques that support compositional definitions include: shallow embeddings of Domain Specific Languages (DSLs) [20], finally tagless [11], polymorphic embeddings [26] or object algebras [35]. These techniques allow us to create compositional definitions, which are easy to extend without modifications. Moreover, when modeling semantics, both finally tagless and object algebras support multiple interpretations (or denotations) of syntax, thus offering a solution to the well-known Expression Problem [53]. Because of these benefits these techniques have become popular both in the functional and object-oriented programming communities.
However, programming languages often only support simple compositional designs well, while support for more sophisticated compositional designs is lacking. For instance, once we have multiple interpretations of syntax, we may wish to compose them. Particularly useful is a merge combinator, which composes two interpretations [35, 37, 42] to form a new interpretation that, when executed, returns the results of both interpretations.
The merge combinator can be manually defined in existing programming languages, and be used in combination with techniques such as finally tagless or object algebras. Moreover variants of the merge combinator are useful to model more complex combinations of interpretations. A good example are so-called dependent interpretations, where an interpretation does not depend only on itself, but also on a different interpretation. These definitions with dependencies are quite common in practice, and, although they are not orthogonal to the interpretation they depend on, we would like to model them (and also mutually dependent interpretations) in a modular and compositional style.
Defining the merge combinator in existing programming languages is verbose and cumbersome, requiring code for every new kind of syntax. Yet, that code is essentially mechanical and ought to be automated. While using advanced meta-programming techniques enables automating the merge combinator to a large extent in existing programming languages [37, 42], those techniques have several problems: error messages can be problematic, type-unsafe reflection is needed in some approaches [37] and advanced type-level features are required in others [42]. An alternative to the merge combinator that supports modular multiple interpretations and works in OO languages with support for some form of multiple inheritance and covariant type-refinement of fields has also been recently proposed [55]. While this approach is relatively simple, it still requires a lot of manual boilerplate code for composition of interpretations.
This paper presents a calculus and polymorphic type system with (disjoint) intersection types [36], called \(\mathsf {F}_{i}^{+}\). \(\mathsf {F}_{i}^{+}\) supports our broader notion of compositional designs, and enables the development of highly modular and reusable programs. \(\mathsf {F}_{i}^{+}\) has a built-in merge operator and a powerful subtyping relation that are used to automate the composition of multiple (possibly dependent) interpretations. In \(\mathsf {F}_{i}^{+}\) subtyping is coercive and enables the automatic generation of coercions in a type-directed fashion. This process is similar to that of other type-directed code generation mechanisms such as type classes [52], which eliminate boilerplate code associated to the dictionary translation [52].
\(\mathsf {F}_{i}^{+}\) continues a line of research on disjoint intersection types. Previous work on disjoint polymorphism (the \(\mathsf {F}_{i}\) calculus) [2] studied the combination of parametric polymorphism and disjoint intersection types, but its subtyping relation does not support BCD-style distributivity rules [3] and the type system also prevents unrestricted intersections [16]. More recently the \(\mathsf {NeColus}\) calculus (or \(\lambda _{i}^{+}\)) [5] introduced a system with disjoint intersection types and BCD-style distributivity rules, but did not account for parametric polymorphism. \(\mathsf {F}_{i}^{+}\) is unique in that it combines all three features in a single calculus: disjoint intersection types and a merge operator; parametric (disjoint) polymorphism; and a BCD-style subtyping relation with distributivity rules. The three features together allow us to improve upon the finally tagless and object algebra approaches and support advanced compositional designs. Moreover previous work on disjoint intersection types has shown various other applications that are also possible in \(\mathsf {F}_{i}^{+}\), including: first-class traits and dynamic inheritance [4], extensible records and dynamic mixins [2], and nested composition and family polymorphism [5].
Unfortunately the combination of the three features has non-trivial complications. The main technical challenge (like for most other calculi with disjoint intersection types) is the proof of coherence for \(\mathsf {F}_{i}^{+}\). Because of the presence of BCD-style distributivity rules, our coherence proof is based on the recent approach employed in \(\lambda _{i}^{+}\) [5], which uses a heterogeneous logical relation called canonicity. To account for polymorphism, which \(\lambda _{i}^{+}\)’s canonicity does not support, we originally wanted to incorporate the relevant parts of System F’s logical relation [43]. However, due to a mismatch between the two relations, this did not work. The parametricity relation has been carefully set up with a delayed type substitution to avoid ill-foundedness due to its impredicative polymorphism. Unfortunately, canonicity is a heterogeneous relation and needs to account for cases that cannot be expressed with the delayed substitution setup of the homogeneous parametricity relation. Therefore, to handle those heterogeneous cases, we resorted to immediate substitutions and predicative instantiations. We do not believe that predicativity is a severe restriction in practice, since many source languages (e.g., those based on the Hindley-Milner type system like Haskell and OCaml) are themselves predicative and do not require the full generality of an impredicative core language. Should impredicative instantiation be required, we expect that step-indexing [1] can be used to recover well-foundedness, though at the cost of a much more complicated coherence proof.
The formalization and metatheory of \(\mathsf {F}_{i}^{+}\) are a significant advance over that of \(\mathsf {F}_{i}\). Besides the support for distributive subtyping, \(\mathsf {F}_{i}^{+}\) removes several restrictions imposed by the syntactic coherence proof in \(\mathsf {F}_{i}\). In particular \(\mathsf {F}_{i}^{+}\) supports unrestricted intersections, which are forbidden in \(\mathsf {F}_{i}\). Unrestricted intersections enable, for example, encoding certain forms of bounded quantification [39]. Moreover the new proof method is more robust with respect to language extensions. For instance, \(\mathsf {F}_{i}^{+}\) supports the bottom type without significant complications in the proofs, while it was a challenging open problem in \(\mathsf {F}_{i}\). A final interesting aspect is that \(\mathsf {F}_{i}^{+}\)’s type-checking is decidable. In the design space of languages with polymorphism and subtyping, similar mechanisms have been known to lead to undecidability. Pierce’s seminal paper “Bounded quantification is undecidable” [40] shows that the contravariant subtyping rule for bounded quantification in \(\mathsf {F}_{<:}\) leads to undecidability of subtyping. In \(\mathsf {F}_{i}^{+}\) the contravariant rule for disjoint quantification retains decidability. Since with unrestricted intersections \(\mathsf {F}_{i}^{+}\) can express several use cases of bounded quantification, \(\mathsf {F}_{i}^{+}\) could be an interesting and decidable alternative to \(\mathsf {F}_{<:}\).
In summary the contributions of this paper are:
  • The \(\mathsf {F}_{i}^{+}\)  calculus, which is the first calculus to combine disjoint intersection types, BCD-style distributive subtyping and disjoint polymorphism. We show several meta-theoretical results, such as type-safety, sound and complete algorithmic subtyping, coherence and decidability of the type system. \(\mathsf {F}_{i}^{+}\) includes the bottom type, which was considered to be a significant challenge in previous work on disjoint polymorphism [2].
  • An extension of the canonicity relation with polymorphism, which enables the proof of coherence of \(\mathsf {F}_{i}^{+}\). We show that the ideas of System F’s parametricity cannot be ported to \(\mathsf {F}_{i}^{+}\). To overcome the problem we use a technique based on immediate substitutions and a predicativity restriction.
  • Improved compositional designs: We show that \(\mathsf {F}_{i}^{+}\)’s combination of features enables improved compositional programming designs and supports automated composition of interpretations in programming techniques like object algebras and finally tagless.
  • Implementation and proofs: All of the metatheory of this paper, except some manual proofs of decidability, has been mechanically formalized in Coq. Furthermore, \(\mathsf {F}_{i}^{+}\) is implemented and all code presented in the paper is available. The implementation, Coq proofs and extended version with appendices can be found in https://​github.​com/​bixuanzju/​ESOP2019-artifact.

2 Compositional Programming

To demonstrate the compositional properties of \(\mathsf {F}_{i}^{+}\) we use Gibbons and Wu’s shallow embeddings of parallel prefix circuits [20]. By means of several different shallow embeddings, we first illustrate the short-comings of a state-of-the-art compositional approach, popularly known as a finally tagless encoding [11], in Haskell. Next we show how parametric polymorphism and distributive intersection types provide a more elegant and compact solution in \(\mathsf {SEDEL}\)  [4], a source language built on top of our \(\mathsf {F}_{i}^{+}\) calculus.

2.1 A Finally Tagless Encoding in Haskell

The circuit DSL represents networks that map a number of inputs (known as the width) of some type A onto the same number of outputs of the same type. The outputs combine (with repetitions) one or more inputs using a binary associative operator \(\oplus : A \times A \rightarrow A\). A particularly interesting class of circuits that can be expressed in the DSL are parallel prefix circuits. These represent computations that take \(n > 0\) inputs \(x_1, \ldots , x_n\) and produce n outputs \(y_1, \ldots , y_n\), where \(y_i = x_1 \oplus x_2 \oplus \ldots \oplus x_i\).
The DSL features 5 language primitives: two basic circuit constructors and three circuit combinators. These are captured in the Haskell type class https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figa_HTML.gif : An https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figc_HTML.gif circuit with n inputs \(x_i\), has n outputs \(y_i = x_i\). A https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figd_HTML.gif circuit has n inputs \(x_i\) and n outputs \(y_i\), where \(y_1 = x_1\) and \(y_j = x_1 \oplus x_j\, (j > 1)\). The binary https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Fige_HTML.gif combinator puts two circuits in parallel; the combined circuit takes the inputs of both circuits to the outputs of both circuits. The binary https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figf_HTML.gif combinator connects the outputs of the first circuit to the inputs of the second; the width of both circuits has to be same. Finally, https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figg_HTML.gif interleaves the wires of circuit https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figh_HTML.gif with bundles of additional wires that map their input straight on their output. The https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figi_HTML.gif parameter specifies the width of the consecutive bundles; the ith wire of https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figj_HTML.gif is preceded by a bundle of width \(\textit{ws}_i - 1\).
Basic width and depth embeddings. Figure 1 shows two simple shallow embeddings, which represent a circuit respectively in terms of its width and its depth. The former denotes the number of inputs/outputs of a circuit, while the latter is the maximal number of \(\oplus \) operators between any input and output. Both definitions follow the same setup: a new Haskell datatype ( https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figk_HTML.gif ) wraps the primitive result value and provides an instance of the https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figl_HTML.gif type class that interprets the 5 DSL primitives accordingly. The following code creates a so-called Brent-Kung parallel prefix circuit [9]: Here https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Fign_HTML.gif evaluates to https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figo_HTML.gif . If we want to know the depth of the circuit, we have to change type signature to https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figp_HTML.gif .
Interpreting multiple ways. Fortunately, with the help of polymorphism we can define a type of circuits that support multiple interpretations at once. This way we can provide a single Brent-Kung parallel prefix circuit definition that can be reused for different interpretations. A type annotation then selects the desired interpretation. For instance, https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figs_HTML.gif yields the width and https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figt_HTML.gif the depth.
Composition of embeddings. What is not ideal in the above code is that the same https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figu_HTML.gif circuit is processed twice, if we want to execute both interpretations. We can do better by processing the circuit only once, computing both interpretations simultaneously. The finally tagless encoding achieves this with a boilerplate instance for tuples of interpretations. Now we can get both embeddings simultaneously as follows: This evaluates to https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figx_HTML.gif .
Composition of dependent interpretations. The composition above is easy because the two embeddings are orthogonal. In contrast, the composition of dependent interpretations is rather cumbersome in the standard finally tagless setup. An example of the latter is the interpretation of circuits as their well-sizedness, which captures whether circuits are well-formed. This interpretation depends on the interpretation of circuits as their width.1 The https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figac_HTML.gif datatype represents the well-sizedness of a circuit with a Boolean, and also keeps track of the circuit’s width. The 5 primitives compute the well-sizedness in terms of both the width and well-sizedness of the subcomponents. What makes the code cumbersome is that it has to explicitly delegate to the https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figad_HTML.gif interpretation to collect this additional information.
With the help of a substantially more complicated setup that features a dozen Haskell language extensions, and advanced programming techniques, we can make the explicit delegation implicit (see the appendix). Nevertheless, that approach still requires a lot of boilerplate that needs to be repeated for each DSL, as well as explicit projections that need to be written in each interpretation. Another alternative Haskell encoding that also enables multiple dependent interpretations is proposed by Zhang and Oliveira [55], but it does not eliminate the explicit delegation and still requires substantial amounts of boilerplate. A final remark is that adding new primitives (e.g., a “right stretch” https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figae_HTML.gif combinator [25]) can also be easily achieved [46].

2.2 The \(\mathsf {SEDEL}\) Encoding

\(\mathsf {SEDEL}\) is a source language that elaborates to \(\mathsf {F}_{i}^{+}\), adding a few convenient source level constructs. The \(\mathsf {SEDEL}\) setup of the circuit DSL is similar to the finally tagless approach. Instead of a https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figaf_HTML.gif type class, there is a https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figag_HTML.gif type that gathers the 5 circuit primitives in a record. Like in Haskell, the type parameter https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figah_HTML.gif expresses that the interpretation of circuits is a parameter. As a side note if a new constructor (e.g., https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figaj_HTML.gif ) is needed, then this is done by means of intersection types ( https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figak_HTML.gif creates an intersection type) in \(\mathsf {SEDEL}\):
Figure 2 shows the two basic shallow embeddings for width and depth. In both cases, a named \(\mathsf {SEDEL}\) definition replaces the corresponding unnamed Haskell type class instance in providing the implementations of the 5 language primitives for a particular interpretation.
The use of the \(\mathsf {SEDEL}\) embeddings is different from that of their Haskell counterparts. Where Haskell implicitly selects the appropriate type class instance based on the available type information, in \(\mathsf {SEDEL}\) the programmer explicitly selects the implementation following the style used by object algebras. The following code does this by building a circuit with https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figam_HTML.gif (short for https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figan_HTML.gif ). Here https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figap_HTML.gif evaluates to https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figaq_HTML.gif . If we want to know the depth of the circuit, we have to replicate the code with https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figar_HTML.gif .
Dynamically reusable circuits. Just like in Haskell, we can use polymorphism to define a type of circuits that can be interpreted with different languages. In contrast to the Haskell solution, this implementation explicitly accepts the implementation.
Automatic composition of languages. Of course, like in Haskell we can also compute both results simultaneously. However, unlike in Haskell, the composition of the two interpretation requires no boilerplate whatsoever—in particular, there is no \(\mathsf {SEDEL}\) counterpart of the https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figau_HTML.gif instance. Instead, we can just compose the two interpretations with the term-level merge operator ( https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figav_HTML.gif ) and specify the desired type https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figaw_HTML.gif . Here the use of the merge operator creates a term with the intersection type https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figay_HTML.gif . Implicitly, the \(\mathsf {SEDEL}\) type system takes care of the details, turning this intersection type into https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figaz_HTML.gif . This is possible because intersection ( https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figba_HTML.gif ) distributes over function and record types (a distinctive feature of BCD-style subtyping).
Composition of dependent interpretations. In \(\mathsf {SEDEL}\) the composition scales nicely to dependent interpretations. For instance, the well-sizedness interpretation can be expressed without explicit projections. Here the https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbc_HTML.gif type in the https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbd_HTML.gif and https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbe_HTML.gif cases expresses that both the well-sizedness and width of subcircuits must be given, and that the width implementation is left as a dependency—when https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbf_HTML.gif is used, then the width implementation must be provided. Again, the distributive properties of https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbg_HTML.gif in the type system take care of merging the two interpretations.
Disjoint polymorphism and dynamic merges. While it may seem from the above examples that definitions have to be merged statically, \(\mathsf {SEDEL}\) in fact supports dynamic merges. For instance, we can encapsulate the merge operator in the https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbi_HTML.gif function while abstracting over the two components https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbj_HTML.gif and https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbk_HTML.gif that are merged as well as over their types https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbl_HTML.gif and https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbm_HTML.gif . This way the components https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbo_HTML.gif and https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbp_HTML.gif are only known at runtime and thus the merge can only happen at that time. The types https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbq_HTML.gif and https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbr_HTML.gif cannot be chosen entirely freely. For instance, if both components would contribute an implementation for the same method, which implementation is provided by the combination would be ambiguous. To avoid this problem the two types https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbs_HTML.gif and https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbt_HTML.gif have to be disjoint. This is expressed in the disjointness constraint https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbu_HTML.gif on the quantifier of the type variable https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbv_HTML.gif . If a quantifier mentions no disjointness constraint, like that of https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbw_HTML.gif , it defaults to the trivial https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figbx_HTML.gif constraint which implies no restriction.

3 Semantics of the \(\mathsf {F}_{i}^{+}\) Calculus

This section gives a formal account of \(\mathsf {F}_{i}^{+}\), the first typed calculus combining disjoint polymorphism [2] (and disjoint intersection types) with BCD subtyping [3]. The main differences to \(\mathsf {F}_{i}\) are in the subtyping, well-formedness and disjointness relations. \(\mathsf {F}_{i}^{+}\) adds BCD subtyping and unrestricted intersections, and also closes an open problem of \(\mathsf {F}_{i}\) by including the bottom type. The dynamic semantics of \(\mathsf {F}_{i}^{+}\) is given by elaboration to the target calculus \(\mathsf {F}_{co}\)—a variant of System F extended with products and explicit coercions.

3.1 Syntax and Semantics

Figure 3 shows the syntax of \(\mathsf {F}_{i}^{+}\). Metavariables \( A , B , C \) range over types. Types include standard constructs from prior work [2, 36]: integers \( \mathsf {Int} \), the top type \( \top \), arrows \( A \rightarrow B \), intersections \( A \, \& \, B \), single-field record types \(\{ l : A \}\) and disjoint quantification \( \forall ( \alpha * A ) .\, B \). One novelty in \(\mathsf {F}_{i}^{+}\) is the addition of the uninhabited bottom type \( \bot \). Metavariable \( E \) ranges over expressions. Expressions are integer literals i, the top value \( \top \), lambda abstractions \( \lambda x .\, E \), applications \( E _{{\mathrm {1}}} \, E _{{\mathrm {2}}}\), merges \( E _{{\mathrm {1}}} \, ,, \, E _{{\mathrm {2}}} \), annotated terms \( E : A \), single-field records \(\{ l = E \}\), record projections \( E . l \), type abstractions \( \varLambda ( \alpha * A ) .\, E \) and type applications \( E \, A \).
Well-formedness and unrestricted intersections. \(\mathsf {F}_{i}^{+}\)’s well-formedness judgment of types \(\varDelta \vdash A \) is standard, and only enforces well-scoping. This is one of the key differences from \(\mathsf {F}_{i}\), which uses well-formedness to also ensure that all intersection types are disjoint. In other words, while in \(\mathsf {F}_{i}\) all valid intersection types must be disjoint, in \(\mathsf {F}_{i}^{+}\) unrestricted intersection types such as \( \mathsf {Int} \, \& \, \mathsf {Int}\) are allowed. More specifically, the well-formedness of intersection types in \(\mathsf {F}_{i}^{+}\) and \(\mathsf {F}_{i}\) is:
Notice that \(\mathsf {F}_{i}\) has an extra disjointness condition \(\varDelta \vdash A * B \) in the premise. This is crucial for \(\mathsf {F}_{i}\) ’s syntactic method for proving coherence, but also burdens the calculus with various syntactic restrictions and complicates its metatheory. For example, it requires extra effort to show that \(\mathsf {F}_{i}\) only produces disjoint intersection types. As a consequence, \(\mathsf {F}_{i}\) features a weaker substitution lemma (note the gray part in Proposition 1) than \(\mathsf {F}_{i}^{+}\) (Lemma 1).
Proposition 1
(Type substitution in \(\mathsf {F}_{i}\)). If \(\varDelta \vdash A \), \(\varDelta \vdash B \), \( ( \alpha * C ) \in \varDelta \), https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq117_HTML.gif and well-formed context \( [ B / \alpha ] \varDelta \), then \( [ B / \alpha ] \varDelta \vdash [ B / \alpha ] A \).
Lemma 1
(Type substitution in \(\mathsf {F}_{i}^{+}\)). If \(\varDelta \vdash A \), \(\varDelta \vdash B \), \( ( \alpha * C ) \in \varDelta \) and well-formed context \( [ B / \alpha ] \varDelta \), then \( [ B / \alpha ] \varDelta \vdash [ B / \alpha ] A \).
Declarative subtyping. \(\mathsf {F}_{i}^{+}\)’s subtyping judgment is another major difference to \(\mathsf {F}_{i}\), because it features BCD-style subtyping and a rule for the bottom type. The full set of subtyping rules are shown in Fig. 4. The reader is advised to ignore the gray parts for now. Our subtyping rules extend the BCD-style subtyping rules from \(\lambda _{i}^{+}\) [5] with a rule for parametric (disjoint) polymorphism (rule S-forall ). Moreover, we have three new rules: rule S-bot for the bottom type, and rules S-distAll and S-topAll for distributivity of disjoint quantification. The subtyping relation is a partial order (rules S-refl and S-trans ). Most of the rules are quite standard. \( \bot \) is a subtype of all types (rule S-bot ). Subtyping of disjoint quantification is covariant in its body, and contravariant in its disjointness constraints (rule S-forall ). Of particular interest are those so-called “distributivity” rules: rule S-distArr says intersections distribute over arrows; rule S-distRcd says intersections distribute over records. Similarly, rule S-distAll dictates that intersections may distribute over disjoint quantifiers.
Typing rules. \(\mathsf {F}_{i}^{+}\) features a bidirectional type system inherited from \(\mathsf {F}_{i}\). The full set of typing rules are shown in Fig. 5. Again we ignore the gray parts and explain them in Sect. 3.3. The inference judgment \(\varDelta ; \varGamma \vdash E \, \Rightarrow \, A \) says that we can synthesize the type \( A \) under the contexts \(\varDelta \) and \(\varGamma \). The checking judgment \(\varDelta ; \varGamma \vdash E \, \Leftarrow \, A \) asserts that \( E \) checks against the type \( A \) under the contexts \(\varDelta \) and \(\varGamma \). Most of the rules are quite standard in the literature. The merge expression \( E _{{\mathrm {1}}} \, ,, \, E _{{\mathrm {2}}} \) is well-typed if both sub-expressions are well-typed, and their types are disjoint (rule T-merge ). The disjointness relation will be explained in Sect. 3.2. To infer a type abstraction (rule T-tabs ), we add disjointness constraints to the type context. For a type application (rule T-tapp ), we check that the type argument satisfies the disjointness constraints. Rules T-merge and T-tapp are the only rules checking disjointness.

3.2 Disjointness

We now turn to another core judgment of \(\mathsf {F}_{i}^{+}\)—the disjointness relation, shown in Fig. 6. The disjointness rules are mostly inherited from \(\mathsf {F}_{i}\)  [2], but the new bottom type requires a notable change regarding disjointness with top-like types.
Top-like types. Top-like types are all types that are isomorphic to \( \top \) (i.e., simultaneously sub- and supertypes of \( \top \)). Hence, they are inhabited by a single value, isomorphic to the \( \top \) value. Figure 6 captures this notion in a syntax-directed fashion in the \( \rceil A \lceil \) predicate. As a historical note, the concept of top-like types was already known by Barendregt et al. [3]. The \(\lambda _{i}\) calculus [36] re-discovered it and coined the term “top-like types”; the \(\mathsf {F}_{i}\) calculus [2] extended it with universal quantifiers. Note that in both calculi, top-like types are solely employed for enabling a syntactic method of proving coherence, and due to the lack of BCD subtyping, they do not have a type-theoretic interpretation of top-like types.
Disjointness rules. The disjointness judgment \(\varDelta \vdash A * B \) is helpful to check whether the merge of two expressions of type \( A \) and \( B \) preserves coherence. Incoherence arises when both expressions produce distinct values for the same type, either directly when they are both of that same type, or through implicit upcasting to a common supertype. Of course we can safely disregard top-like types in this matter because they do not have two distinct values. In short, it suffices to check that the two types have only top-like supertypes in common.
Because \( \bot \) and any another type \( A \) always have \( A \) as a common supertype, it follows that \( \bot \) is only disjoint to \( A \) when \( A \) is top-like. More generally, if \( A \) is a top-like type, then \( A \) is disjoint to any type. This is the rationale behind the two rules D-topL and D-topR , which generalize and subsume \(\varDelta \vdash \top * A \) and \(\varDelta \vdash A * \top \) from \(\mathsf {F}_{i}\), and also cater to the bottom type. Two other interesting rules are D-tvarL and D-tvarR , which dictate that a type variable \(\alpha \) is disjoint with some type \( B \) if its disjointness constraints \( A \) is a subtype of \( B \). Disjointness axioms \( A *_{ax} B \) (appearing in rule D-ax ) take care of two types with different type constructors (e.g., \( \mathsf {Int} \) and records). Axiom rules can be found in the appendix. Finally we note that the disjointness relation is symmetric.

3.3 Elaboration and Type Safety

The dynamic semantics of \(\mathsf {F}_{i}^{+}\) is given by elaboration into a target calculus. The target calculus \(\mathsf {F}_{co}\) is the standard call-by-value System F extended with products and coercions. The syntax of \(\mathsf {F}_{co}\) is shown in Fig. 7.
Type translation. Definition 1 defines the type translation function \(| \cdot |\) from \(\mathsf {F}_{i}^{+}\) types \( A \) to \(\mathsf {F}_{co}\) types \(\tau \). Most cases are straightforward. For example, \( \bot \) is mapped to an uninhabited type \( \forall \alpha .\, \alpha \); disjoint quantification is mapped to universal quantification, dropping the disjointness constraints. \(| \cdot |\) is naturally extended to work on contexts as well.
Definition 1
Type translation \(| \cdot |\) is defined as follows:
Coercions and coercive subtyping. We follow prior work [5, 6] by having a syntactic category for coercions [22]. In Fig. 7, we have several new coercions: \( \mathsf {bot} \), \( co _{\forall } \), \( \mathsf {dist}_{\forall } \) and \( \mathsf {top}_{\forall } \) due to the addition of polymorphism and bottom type. As seen in Fig. 4 the coercive subtyping judgment has the form https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq187_HTML.gif , which says that the subtyping derivation for \( A <: B \) produces a coercion co that converts terms of type https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq189_HTML.gif to https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq190_HTML.gif .
\(\mathsf {F}_{co }\) static semantics. The typing rules of \(\mathsf {F}_{co}\) are quite standard. We have one rule https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq193_HTML.gif regarding coercion application, which uses the judgment \( co {:}{:} \tau \triangleright \tau ' \) to type coercions. We show two representative rules https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq195_HTML.gif and https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq196_HTML.gif .
\(\mathsf {F}_{co}\) dynamic semantics. The dynamic semantics of \(\mathsf {F}_{co}\) is mostly unremarkable. We write \( e \longrightarrow e' \) to mean one-step reduction. Figure 8 shows selected reduction rules. The first line shows three representative rules regarding coercion reductions. They do not contribute to computation but merely rearrange coercions. Our coercion reduction rules are quite standard but not efficient in terms of space. Nevertheless, there is existing work on space-efficient coercions [23, 50], which should be applicable to our work as well. Rule r-app is the usual \(\beta \)-rule that performs actual computation, and rule r-ctxt handles reduction under an evaluation context. As usual, \( \longrightarrow ^{*} \) is the reflexive, transitive closure of \( \longrightarrow \). Now we can show that \(\mathsf {F}_{co}\) is type safe:
Theorem 1
(Preservation). If \(\bullet ; \bullet \vdash e : \tau \) and \( e \longrightarrow e' \), then \(\bullet ; \bullet \vdash e' : \tau \).
Theorem 2
(Progress). If \(\bullet ; \bullet \vdash e : \tau \), either \( e \) is a value, or \(\exists e' .\ e \longrightarrow e' \).
Elaboration. Now consider the translation parts in Fig. 5. The key idea of the translation follows the prior work [2, 5, 16, 36]: merges are elaborated to pairs (rule T-merge ); disjoint quantification and disjoint type applications (rules T-tabs and T-tapp )) are elaborated to regular universal quantification and type applications, respectively. Finally, the following lemma connects \(\mathsf {F}_{i}^{+}\) to \(\mathsf {F}_{co}\):
Lemma 2
(Elaboration soundness). We have that:
  • If https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq212_HTML.gif , then https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq213_HTML.gif .
  • If https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq214_HTML.gif , then https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq215_HTML.gif .
  • If https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq216_HTML.gif , then https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq217_HTML.gif .

4 Algorithmic System and Decidability

The subtyping relation in Fig. 4 is highly non-algorithmic due to the presence of a transitivity rule. This section presents an alternative algorithmic formulation. Our algorithm extends that of \(\lambda _{i}^{+}\), which itself was inspired by Pierce’s decision procedure [38], to handle disjoint quantifiers and the bottom type. We then prove that the algorithm is sound and complete with respect to declarative subtyping.
Additionally we prove that the subtyping and disjointness relations are decidable. Although the proofs of this fact are fairly straightforward, it is nonetheless remarkable since it contrasts with the subtyping relation for (full) \(\mathsf {F}_{<:}\)  [10], which is undecidable [40]. Thus while bounded quantification is infamous for its undecidability, disjoint quantification has the nicer property of being decidable.

4.1 Algorithmic Subtyping Rules

While Fig. 4 is a fine specification of how subtyping should behave, it cannot be read directly as a subtyping algorithm for two reasons: (1) the conclusions of rules S-refl and S-trans overlap with the other rules, and (2) the premises of rule S-trans mention a type that does not appear in the conclusion. Simply dropping the two offending rules from the system is not possible without losing expressivity [29]. Thus we need a different approach. Following \(\lambda _{i}^{+}\), we intend the algorithmic judgment \(\mathcal {Q} \vdash A <: B \) to be equivalent to \( A <: \mathcal {Q} \Rightarrow B \), where \(\mathcal {Q}\) is a queue used to track record labels, domain types and disjointness constraints. The full rules of the algorithmic subtyping of \(\mathsf {F}_{i}^{+}\) are shown Fig. 9.
Definition 2
( https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq225_HTML.gif ). \( \mathcal {Q} \Rightarrow A \) is defined as follows:
For brevity of the algorithm, we use metavariable c to mean type constants:
https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Equ4_HTML.png
The basic idea of \(\mathcal {Q} \vdash A <: B \) is to perform a case analysis on \( B \) until it reaches type constants. We explain new rules regarding disjoint quantification and the bottom type. When a quantifier is encountered in \( B \), rule A-forall pushes the type variables with its disjointness constraints onto \(\mathcal {Q}\) and continue with the body. Correspondingly, in rule A-allConst , when a quantifier is encountered in \( A \), and the head of \(\mathcal {Q}\) is a type variable, this variable is popped out and we continue with the body. Rule A-bot is similar to its declarative counterpart. Two meta-functions \( {\llbracket } \mathcal {Q} {\rrbracket }^{\top } \) and \( {\llbracket } \mathcal {Q} {\rrbracket }^{ \& } \) are meant to generate correct forms of coercions, and their definitions are shown in the appendix. For other algorithmic rules, we refer to \(\lambda _{i}^{+}\) [5] for detailed explanations.
Correctness of the algorithm. We prove that the algorithm is sound and complete with respect to the specification. We refer the reader to our Coq formalization for more details. We only show the two major theorems:
Theorem 3
(Soundness). If https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq236_HTML.gif then https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq237_HTML.gif .
Theorem 4
(Completeness). If https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq238_HTML.gif , then https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq239_HTML.gif .

4.2 Decidability

Moreover, we prove that our algorithmic type system is decidable. To see this, first notice that the bidirectional type system is syntax-directed, so we only need to show decidability of algorithmic subtyping and disjointness. The full (manual) proofs for decidability can be found in the appendix.
Lemma 3
(Decidability of algorithmic subtyping). Given \(\mathcal {Q}\), \( A \) and \( B \), it is decidable whether there exists co, such that https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq243_HTML.gif .
Lemma 4
(Decidability of disjointness checking). Given \(\varDelta \), \( A \) and \( B \), it is decidable whether \(\varDelta \vdash A * B \).
One interesting observation here is that although our disjointness quantification has a similar shape to bounded quantification \( \forall ( \alpha <: A ) .\, B \) in \(\mathsf {F}_{<:}\)  [10], subtyping for \(\mathsf {F}_{<:}\)  is undecidable [40]. In \(\mathsf {F}_{<:}\), the subtyping relation between bounded quantification is:
Compared with rule S-forall , both rules are contravariant on bounded/disjoint types, and covariant on the body. However, with bounded quantification it is fundamental to track the bounds in the environment, which complicates the design of the rules and makes subtyping undecidable with rule https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq252_HTML.gif . Decidability can be recovered by employing an invariant rule for bounded quantification (that is by forcing \( A_{{\mathrm {1}}} \) and \( A_{{\mathrm {2}}} \) to be identical). Disjoint quantification does not require such invariant rule for decidability.

5 Establishing Coherence for \(\mathsf {F}_{i}^{+}\)

In this section, we establish the coherence property for \(\mathsf {F}_{i}^{+}\). The proof strategy mostly follows that of \(\lambda _{i}^{+}\), but the construction of the heterogeneous logical relation is significantly more complicated. Firstly in Sect. 5.1 we discuss why adding BCD subtyping to disjoint polymorphism introduces significant complications. In Sect. 5.2, we discuss why a natural extension of System F’s logical relation to deal with disjoint polymorphism fails. The technical difficulty is well-foundedness, stemming from the interaction between impredicativity and disjointness. Finally in Sect. 5.3, we present our (predicative) logical relation that is specially crafted to prove coherence for \(\mathsf {F}_{i}^{+}\).

5.1 The Challenge

Before we tackle the coherence of \(\mathsf {F}_{i}^{+}\), let us first consider how \(\mathsf {F}_{i}\) (and its predecessor \(\lambda _{i}\)) enforces coherence. Its essentially syntactic approach is to make sure that there is at most one subtyping derivation for any two types. As an immediate consequence, the produced coercions are uniquely determined and thus the calculus is clearly coherent. Key to this approach is the invariant that the type system only produces disjoint intersection types. As we mentioned in Sect. 3, this invariant complicates the calculus and its metatheory, and leads to a weaker substitution lemma. Moreover, the syntactic coherence approach is incompatible with BCD subtyping, which leads to multiple subtyping derivations with different coercions and requires a more general substitution lemma. To accommodate BCD into \(\lambda _{i}\), Bi et al. [5] have created the \(\lambda _{i}^{+}\) calculus and developed a semantically-founded proof method based on logical relations. Because \(\lambda _{i}^{+}\) does not feature polymorphism, the problem at hand is to incorporate support for polymorphism in this semantic approach to coherence, which turns out to be more challenging than is apparent.

5.2 Impredicativity and Disjointness at Odds

Figure 10 shows selected cases of canonicity, which is \(\lambda _{i}^{+}\)’s (heterogeneous) logical relation used in the coherence proof. The definition captures that two values \( v_{{\mathrm {1}}} \) and \( v_{{\mathrm {2}}} \) of types \(\tau _{{\mathrm {1}}}\) and \(\tau _{{\mathrm {2}}}\) are in \(\mathcal {V}\llbracket \tau _{{\mathrm {1}}} ; \tau _{{\mathrm {2}}} \rrbracket \) iff either the types are disjoint or the types are equal and the values are semantically equivalent. Because both alternatives entail coherence, canonicity is key to \(\lambda _{i}^{+}\)’s coherence proof.
Well-foundedness issues. For \(\mathsf {F}_{i}^{+}\), we need to extend canonicity with additional cases to account for universally quantified types. For reasons that will become clear in Sect. 5.3, the type indices become source types (rather than target types as in Fig. 10). A naive formulation of one case rule is:
This case is problematic because it destroys the well-foundedness of \(\lambda _{i}^{+}\)’s logical relation, which is based on structural induction on the type indices. Indeed, the type \( [ C_{{\mathrm {1}}} / \alpha ] B_{{\mathrm {1}}} \) may well be larger than \( \forall ( \alpha * A_{{\mathrm {1}}} ) .\, B_{{\mathrm {1}}} \).
However, System F’s well-known parametricity logical relation [43] provides us with a means to avoid this problem. Rather than performing the type substitution immediately as in the above rule, we can defer it to a later point by adding it to an extra parameter \(\rho \) of the relation, which accumulates the deferred substitutions. This yields a modified rule where the type indices in the recursive occurrences are indeed smaller:
Of course, the deferred substitution has to be performed eventually, to be precise when the type indices are type variables.
$$ ( v_{{\mathrm {1}}} , v_{{\mathrm {2}}} ) \in \mathcal {V}\llbracket \alpha ; \alpha \rrbracket _{ \rho } \triangleq ( v_{{\mathrm {1}}} , v_{{\mathrm {2}}} ) \in \mathcal {V}\llbracket \rho _{{\mathrm {1}}} ( \alpha ) ; \rho _{{\mathrm {2}}} ( \alpha ) \rrbracket _{ \emptyset } $$
Unfortunately, this way we have not only moved the type substitution to the type variable case, but also the ill-foundedness problem. Indeed, this problem is also present in System F. The standard solution is to not fix the relation \(\mathsf {R}\) by which values at type \(\alpha \) are related to \(\mathcal {V}\llbracket \rho _{{\mathrm {1}}} ( \alpha ) ; \rho _{{\mathrm {2}}} ( \alpha ) \rrbracket \), but instead to make it a parameter that is tracked by \(\rho \). This yields the following two rules for disjoint quantification and type variables:
Now we have finally recovered the well-foundedness of the relation. It is again structurally inductive on the size of the type indexes.
Heterogeneous issues. We have not yet accounted for one major difference between the parametricity relation, from which we have borrowed ideas, and the canonicity relation, to which we have been adding. The former is homogeneous (i.e., the types of the two values is the same) and therefore has one type index, while the latter is heterogeneous (i.e., the two values may have different types) and therefore has two type indices. Thus we must also consider cases like \(\mathcal {V}\llbracket \alpha ; \mathsf {Int} \rrbracket \). A definition that seems to handle this case appropriately is:
$$\begin{aligned} ( v_{{\mathrm {1}}} , v_{{\mathrm {2}}} ) \in \mathcal {V}\llbracket \alpha ; \mathsf {Int} \rrbracket _{ \rho } \triangleq ( v_{{\mathrm {1}}} , v_{{\mathrm {2}}} ) \in \mathcal {V}\llbracket \rho _{{\mathrm {1}}} ( \alpha ) ; \mathsf {Int} \rrbracket _{ \emptyset } \end{aligned}$$
(1)
Here is an example to motivate it. Let \( E = \varLambda ( \alpha * \top ) .\, ( ( \lambda x .\, x ) : \alpha \, \& \, \mathsf {Int} \rightarrow \alpha \, \& \, \mathsf {Int} ) \). We expect that \( E \, \mathsf {Int} \, 1 \) evaluates to \(\langle 1 , 1 \rangle \). To prove that, we need to show \( (1 , 1) \in \mathcal {V}\llbracket \alpha ; \mathsf {Int} \rrbracket _{[ \alpha \mapsto ( \mathsf {Int} , \mathsf {Int} , \mathsf {R}) ]} \). According to Eq. (1), this is indeed the case. However, we run into ill-foundedness issue again, because \(\rho _{{\mathrm {1}}} ( \alpha )\) could be larger than \(\alpha \). Alas, this time the parametricity relation has no solution for us.

5.3 The Canonicity Relation for \(\mathsf {F}_{i}^{+}\)

In light of the fact that substitution in the logical relation seems unavoidable in our setting, and that impredicativity is at odds with substitution, we turn to predicativity: we change rule T-tapp to its predicative version:
where metavariable \( t \) ranges over monotypes (types minus disjoint quantification). We do not believe that predicativity is a severe restriction in practice, since many source languages (e.g., those based on the Hindley-Milner type system [24, 32] like Haskell and OCaml) are themselves predicative and do not require the full generality of an impredicative core language.
Luckily, substitution with monotypes does not prevent well-foundedness. Figure 11 defines the canonicity relation for \(\mathsf {F}_{i}^{+}\). The canonicity relation is a family of binary relations over \(\mathsf {F}_{co}\) values that are heterogeneous, i.e., indexed by two \(\mathsf {F}_{i}^{+}\) types. Two points are worth mentioning. (1) An apparent difference from \(\lambda _{i}^{+}\)’s logical relation is that our relation is now indexed by source types. The reason is that the type translation function (Definition 1) discards disjointness constraints, which are crucial in our setting, whereas \(\lambda _{i}^{+}\)’s type translation does not have information loss. (2) Heterogeneity allows relating values of different types, and in particular values whose types are disjoint. The rationale behind the canonicity relation is to combine equality checking from traditional (homogeneous) logical relations with disjointness checking. It consists of two relations: the value relation \(\mathcal {V}\llbracket A ; B \rrbracket \) relates closed values; and the expression relation \(\mathcal {E}\llbracket A ; B \rrbracket \)—defined in terms of the value relation—relates closed expressions.
The relation \(\mathcal {V}\llbracket A ; B \rrbracket \) is defined by induction on the structures of \( A \) and \( B \). For integers, it requires the two values to be literally the same. For two records to behave the same, their fields must behave the same. For two functions to behave the same, they are required to produce outputs related at \( B_{{\mathrm {1}}} \) and \( B_{{\mathrm {2}}} \) when given related inputs at \( A_{{\mathrm {1}}} \) and \( A_{{\mathrm {2}}} \). For the next two cases regarding intersection types, the relation distributes over intersection constructor \( \, \& \, \). Of particular interest is the case for disjoint quantification. Notice that it does not quantify over arbitrary relations, but directly substitutes \(\alpha \) with monotype \( t \) in \( B_{{\mathrm {1}}} \) and \( B_{{\mathrm {2}}} \). This means that our canonicity relation does not entail parametricity. However, it suffices for our purposes to prove coherence. Another noticeable thing is that we keep the invariant that \( A \) and \( B \) are closed types throughout the relation, so we no longer need to consider type variables. This simplifies things a lot. Note that when one type is \( \bot \), two values are vacuously related because there simply are no values of type \( \bot \). We need to show that the relation is indeed well-founded:
Lemma 5
(Well-foundedness). The canonicity relation of \(\mathsf {F}_{i}^{+}\) is well-founded.
Proof
Let \(| \cdot |_{\forall }\) and \(| \cdot |_s\) be the number of \(\forall \)-quantifies and the size of types, respectively. Consider the measure \(\langle | \cdot |_{\forall } , | \cdot |_s \rangle \), where \(\langle \dots \rangle \) denotes lexicographic order. For the case of disjoint quantification, the number of \(\forall \)-quantifiers decreases. For the other cases, the measure of \(| \cdot |_{\forall }\) does not increase, and the measure of \(| \cdot |_s\) strictly decreases.    \(\square \)

5.4 Establishing Coherence

Logical equivalence. The canonicity relation can be lifted to open expressions in the standard way, i.e., by considering all possible interpretations of free type and term variables. The logical interpretations of type and term contexts are found in the bottom half of Fig. 11.
Definition 3
(Logical equivalence \(\backsimeq _{log}\) )
For conciseness, we write \( \varDelta ; \varGamma \vdash e_{{\mathrm {1}}} \backsimeq _{log} e_{{\mathrm {2}}} : A \) to mean \( \varDelta ; \varGamma \vdash e_{{\mathrm {1}}} \backsimeq _{log} e_{{\mathrm {2}}} : A ; A \).
Contextual equivalence. Following \(\lambda _{i}^{+}\), the notion of coherence is based on contextual equivalence. The intuition is that two programs are equivalent if we cannot tell them apart in any context. As usual, contextual equivalence is expressed using expression contexts (\(\mathcal {C}\) and \(\mathcal {D}\) denote \(\mathsf {F}_{i}^{+}\) and \(\mathsf {F}_{co}\) expression contexts, respectively), Due to the bidirectional nature of the type system, the typing judgment of \(\mathcal {C}\) features 4 different forms (full rules are in the appendix), e.g., https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/480721_1_En_14_IEq334_HTML.gif reads if \(\varDelta ; \varGamma \vdash E \, \Rightarrow \, A \) then \(\varDelta ' ; \varGamma ' \vdash \mathcal {C} \{ E \} \, \Rightarrow \, A' \). The judgment also generates a well-typed \(\mathsf {F}_{co}\) context \(\mathcal {D}\). The following two definitions capture the notion of contextual equivalence:
Definition 4
(Kleene Equality \(\backsimeq \)). Two complete programs (i.e., closed terms of type \( \mathsf {Int} \)), \( e \) and \( e' \), are Kleene equal, written \( e \backsimeq e' \), iff there exists an integer i such that \( e \longrightarrow ^{*} i\) and \( e' \longrightarrow ^{*} i\).
Definition 5
(Contextual Equivalence \(\backsimeq _{ctx}\) )
Coherence. For space reasons, we directly show the coherence statement of \(\mathsf {F}_{i}^{+}\). We need several technical lemmas such as compatibility lemmas, fundamental property, etc. The interested reader can refer to our Coq formalization.
Theorem 5
(Coherence). We have that
  • If \(\varDelta ; \varGamma \vdash E \, \Rightarrow \, A \) then \( \varDelta ; \varGamma \vdash E \backsimeq _{ctx} E : A \).
  • If \(\varDelta ; \varGamma \vdash E \, \Leftarrow \, A \) then \( \varDelta ; \varGamma \vdash E \backsimeq _{ctx} E : A \).
That is, coherence is a special case of Definition 5 where \( E _{{\mathrm {1}}}\) and \( E _{{\mathrm {2}}}\) are the same. At first glance, this appears underwhelming: of course \( E \) behaves the same as itself! The tricky part is that, if we expand it according to Definition 5, it is not \( E \) itself but all its translations \( e_{{\mathrm {1}}} \) and \( e_{{\mathrm {2}}} \) that behave the same!
Coherence. In calculi featuring coercive subtyping, a semantics that interprets the subtyping judgment by introducing explicit coercions is typically defined on typing derivations rather than on typing judgments. A natural question that arises for such systems is whether the semantics is coherent, i.e., distinct typing derivations of the same typing judgment possess the same meaning. Since Reynolds [45] proved the coherence of a calculus with intersection types, many researchers have studied the problem of coherence in a variety of typed calculi. Two approaches are commonly found in the literature. The first approach is to find a normal form for a representation of the derivation and show that normal forms are unique for a given typing judgment [8, 15, 47]. However, this approach cannot be directly applied to Curry-style calculi (where the lambda abstractions are not type annotated). Biernacki and Polesiuk [6] considered the coherence problem of coercion semantics. Their criterion for coherence of the translation is contextual equivalence in the target calculus. Inspired by this approach, Bi et al. [5] proposed the canonicity relation to prove coherence for a calculus with disjoint intersection types and BCD subtyping. As we have shown in Sect. 5, constructing a suitable logical relation for \(\mathsf {F}_{i}^{+}\) is challenging. On the one hand, the original approach by Alpuim et al. [2] in \(\mathsf {F}_{i}\) does not work any more due to the addition of BCD subtyping. On the other hand, simply combining System F’s logical relation with \(\lambda _{i}^{+}\)’s canonicity relation does not work as expected, due to the issue of well-foundedness. To solve the problem, we employ immediate substitutions and a restriction to predicative instantiations.
BCD subtyping and decidability. The BCD type system was first introduced by Barendregt et al. [3] to characterize exactly the strongly normalizing terms. The BCD type system features a powerful subtyping relation, which serves as a base for our subtyping relation. The decidability of BCD subtyping has been shown in several works [27, 38, 41, 51]. Laurent [28] formalized the relation in Coq in order to eliminate transitivity cuts from it, but his formalization does not deliver an algorithm. Only recently, Laurent [30] presented a general way of defining a BCD-like subtyping relation extended with generic contravariant/covariant type constructors that enjoys the “sub-formula property”. Our Coq formalization extends the approach used in \(\lambda _{i}^{+}\), which follows a different idea based on Pierce’s decision procedure [38], with parametric (disjoint) polymorphism and corresponding distributivity rules. More recently, Muehlboeck and Tate [34] presented a decidable algorithmic system (proved in Coq) with union and intersection types. Similar to \(\mathsf {F}_{i}^{+}\), their system also has distributive subtyping rules. They also discussed the addition of polymorphism, but left a Coq formalization for future work. In their work they regard intersections of disjoint types (e.g., \( \mathsf {String} \, \& \, \mathsf {Int}\)) as uninhabitable, which is different from our interpretation. As a consequence, coherence is a non-issue for them.
Intersection types, the merge operator and polymorphism. Forsythe [44] has intersection types and a merge-like operator. However to ensure coherence, various restrictions were added to limit the use of merges. In Forsythe merges cannot contain more than one function. Castagna et al. [12] proposed a coherent calculus \( \lambda { \& }\) to study overloaded functions. \( \lambda { \& }\) has a special merge operator that works on functions only. Dunfield proposed a calculus [16] (which we call \(\lambda _{,,}\)) that shows significant expressiveness of type systems with unrestricted intersection types and an (unrestricted) merge operator. However, because of his unrestricted merge operator (allowing \( 1 \, ,, \, 2 \)), his calculus lacks coherence. Blaauwbroek’s \(\lambda _{\wedge }^{\vee }\)  [7] enriched \(\lambda _{,,}\) with BCD subtyping and computational effects, but he did not address coherence. The coherence issue for a calculus similar to \(\lambda _{,,}\) was first addressed in \(\lambda _{i}\)  [36] with the notion of disjointness, but at the cost of dropping unrestricted intersections, and a strict notion of coherence (based on \(\alpha \)-equivalence). Later Bi et al. [5] improved calculi with disjoint intersection types by removing several restrictions, adopted BCD subtyping and a semantic notion of coherence (based on contextual equivalence) proved using canonicity. The combination of intersection types, a merge operator and parametric polymorphism, while achieving coherence was first studied in \(\mathsf {F}_{i}\)  [2], which serves as a foundation for \(\mathsf {F}_{i}^{+}\). However, \(\mathsf {F}_{i}\) suffered the same problems as \(\lambda _{i}\). Additionally in \(\mathsf {F}_{i}\) a bottom type is problematic due to interactions with disjoint polymorphism and the lack of unrestricted intersections. The issues can be illustrated with the well-typed \(\mathsf {F}_{i}^{+}\) expression \( \varLambda ( \alpha * \bot ) .\, \lambda x : \alpha .\, x \, ,, \, x \). In this expression the type of \( x \, ,, \, x \) is \( \alpha \, { \& } \, \alpha \). Such a merge does not violate disjointness because the only types that \(\alpha \) can be instantiated with are top-like, and top-like types do not introduce incoherence. In \(\mathsf {F}_{i}\) a type variable \(\alpha \) can never be disjoint to another type that contains \(\alpha \), but (as the previous expression shows) the addition of a bottom type allows expressions where such (strict) condition does not hold. In this work, we removed those restrictions, extended BCD subtyping with polymorphism, and proposed a more powerful logical relation for proving coherence. Figure 12 summarizes the main differences between the aforementioned calculi.
There are also several other calculi with intersections and polymorphism. Pierce proposed \(\mathsf {F}_{\wedge }\) [39], a calculus combining intersection types and bounded quantification. Pierce translates \(\mathsf {F}_{\wedge }\) to System F extended with products, but he left coherence as a conjecture. More recently, Castagna et al. [14] proposed a polymorphic calculus with set-theoretic type connectives (intersections, unions, negations). But their calculus does not include a merge operator. Castagna and Lanvin also proposed a gradual type system [13] with intersection and union types, but also without a merge operator.
Row polymorphism and bounded polymorphism. Row polymorphism was originally proposed by Wand [54] as a mechanism to enable type inference for a simple object-oriented language based on recursive records. These ideas were later adopted into type systems for extensible records [19, 21, 31]. Our merge operator can be seen as a generalization of record extension/concatenation, and selection is also built-in. In contrast to most record calculi, restriction is not a primitive operation in \(\mathsf {F}_{i}^{+}\), but can be simulated via subtyping. Disjoint quantification can simulate the lacks predicate often present in systems with row polymorphism. Recently Morris and McKinna presented a typed language [33], generalizing and abstracting existing systems of row types and row polymorphism. Alpuim et al. [2] informally studied the relationship between row polymorphism and disjoint polymorphism, but it would be interesting to study such relationship more formally. The work of Morris and McKinna may be interesting for such study in that it gives a general framework for row type systems.
Bounded quantification is currently the dominant mechanism in major mainstream object-oriented languages supporting both subtyping and polymorphism. \(\mathsf {F}_{<:}\)  [10] provides a simple model for bounded quantification, but type-checking in full \(\mathsf {F}_{<:}\) is proved to be undecidable [40]. Pierce’s thesis [39] discussed the relationship between calculi with simple polymorphism and intersection types and bounded quantification. He observed that there is a way to “encode” many forms of bounded quantification in a system with intersections and pure (unbounded) second-order polymorphism. That encoding can be easily adapted to \(\mathsf {F}_{i}^{+}\):
$$ \forall ( \alpha <: A ) .\, B \triangleq \forall ( \alpha * \top ) .\, ( [ A \, { \& } \, \alpha / \alpha ] B ) $$
The idea is to replace bounded quantification by (unrestricted) universal quantification and all occurrences of \(\alpha \) by \( A \, { \& } \, \alpha \) in the body. Such an encoding seems to indicate that \(\mathsf {F}_{i}^{+}\) could be used as a decidable alternative to (full) \(\mathsf {F}_{<:}\). It is worthwhile to note that this encoding does not work in \(\mathsf {F}_{i}\) because \( A \, { \& } \, \alpha \) is not well-formed (\(\alpha \) is not disjoint to \( A \)). In other words, the encoding requires unrestricted intersections.

7 Conclusion and Future Work

We have proposed \(\mathsf {F}_{i}^{+}\), a type-safe and coherent calculus with disjoint intersection types, BCD subtyping and parametric polymorphism. \(\mathsf {F}_{i}^{+}\) improves the state-of-art of compositional designs, and enables the development of highly modular and reusable programs. One interesting and useful further extension would be implicit polymorphism. For that we want to combine Dunfield and Krishnaswami’s approach [17] with our bidirectional type system. We would also like to study the parametricity of \(\mathsf {F}_{i}^{+}\). As we have seen in Sect. 5.2, it is not at all obvious how to extend the standard logical relation of System F to account for disjointness, and avoid potential circularity due to impredicativity. A promising solution is to use step-indexed logical relations [1].

Acknowledgments

We thank the anonymous reviewers and Yaoda Zhou for their helpful comments. This work has been sponsored by the Hong Kong Research Grant Council projects number 17210617 and 17258816, and by the Research Foundation - Flanders.
Open Access This chapter is licensed under the terms of the Creative Commons Attribution 4.0 International License (http://creativecommons.org/licenses/by/4.0/), which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license and indicate if changes were made.
The images or other third party material in this chapter are included in the chapter's Creative Commons license, unless indicated otherwise in a credit line to the material. If material is not included in the chapter's Creative Commons license and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder.
Fußnoten
1
Dependent recursion schemes are also known as zygomorphism [18] after the ancient Greek word https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figy_HTML.gif for yoke. We have labeled the https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figz_HTML.gif field with https://static-content.springer.com/image/chp%3A10.1007%2F978-3-030-17184-1_14/MediaObjects/480721_1_En_14_Figaa_HTML.gif because it is pulling the yoke.
 
Literatur
3.
Zurück zum Zitat Barendregt, H., Coppo, M., Dezani-Ciancaglini, M.: A filter lambda model and the completeness of type assignment. J. Symb. Logic 48(04), 931–940 (1983)MathSciNetCrossRef Barendregt, H., Coppo, M., Dezani-Ciancaglini, M.: A filter lambda model and the completeness of type assignment. J. Symb. Logic 48(04), 931–940 (1983)MathSciNetCrossRef
4.
Zurück zum Zitat Bi, X., Oliveira, B.C.d.S.: Typed first-class traits. In: European Conference on Object-Oriented Programming (ECOOP) (2018) Bi, X., Oliveira, B.C.d.S.: Typed first-class traits. In: European Conference on Object-Oriented Programming (ECOOP) (2018)
5.
Zurück zum Zitat Bi, X., Oliveira, B.C.d.S., Schrijvers, T.: The essence of nested composition. In: European Conference on Object-Oriented Programming (ECOOP) (2018) Bi, X., Oliveira, B.C.d.S., Schrijvers, T.: The essence of nested composition. In: European Conference on Object-Oriented Programming (ECOOP) (2018)
6.
Zurück zum Zitat Biernacki, D., Polesiuk, P.: Logical relations for coherence of effect subtyping. In: International Conference on Typed Lambda Calculi and Applications (TLCA) (2015) Biernacki, D., Polesiuk, P.: Logical relations for coherence of effect subtyping. In: International Conference on Typed Lambda Calculi and Applications (TLCA) (2015)
7.
Zurück zum Zitat Blaauwbroek, L.: On the interaction between unrestricted union and intersection types and computational effects. Master’s thesis, Technical University Eindhoven (2017) Blaauwbroek, L.: On the interaction between unrestricted union and intersection types and computational effects. Master’s thesis, Technical University Eindhoven (2017)
8.
Zurück zum Zitat Breazu-Tannen, V., Coquand, T., Gunter, C.A., Scedrov, A.: Inheritance as implicit coercion. Inf. Comput. 93(1), 172–221 (1991)MathSciNetCrossRef Breazu-Tannen, V., Coquand, T., Gunter, C.A., Scedrov, A.: Inheritance as implicit coercion. Inf. Comput. 93(1), 172–221 (1991)MathSciNetCrossRef
9.
Zurück zum Zitat Brent, R.P., Kung, H.T.: The chip complexity of binary arithmetic. In: Proceedings of the Twelfth Annual ACM Symposium on Theory of Computing, pp. 190–200 (1980) Brent, R.P., Kung, H.T.: The chip complexity of binary arithmetic. In: Proceedings of the Twelfth Annual ACM Symposium on Theory of Computing, pp. 190–200 (1980)
10.
Zurück zum Zitat Cardelli, L., Wegner, P.: On understanding types, data abstraction, and polymorphism. ACM Comput. Surv. 17(4), 471–523 (1985)CrossRef Cardelli, L., Wegner, P.: On understanding types, data abstraction, and polymorphism. ACM Comput. Surv. 17(4), 471–523 (1985)CrossRef
11.
Zurück zum Zitat Carette, J., Kiselyov, O., Shan, C.C.: Finally tagless, partially evaluated: tagless staged interpreters for simpler typed languages. J. Funct. Program. 19(05), 509 (2009)MathSciNetCrossRef Carette, J., Kiselyov, O., Shan, C.C.: Finally tagless, partially evaluated: tagless staged interpreters for simpler typed languages. J. Funct. Program. 19(05), 509 (2009)MathSciNetCrossRef
12.
Zurück zum Zitat Castagna, G., Ghelli, G., Longo, G.: A calculus for overloaded functions with subtyping. In: Conference on LISP and Functional Programming (1992) Castagna, G., Ghelli, G., Longo, G.: A calculus for overloaded functions with subtyping. In: Conference on LISP and Functional Programming (1992)
13.
Zurück zum Zitat Castagna, G., Lanvin, V.: Gradual typing with union and intersection types. In: Proceedings of the ACM on Programming Languages, vol. 1, no. (ICFP), pp. 1–28 (2017) Castagna, G., Lanvin, V.: Gradual typing with union and intersection types. In: Proceedings of the ACM on Programming Languages, vol. 1, no. (ICFP), pp. 1–28 (2017)
14.
Zurück zum Zitat Castagna, G., Nguyen, K., Xu, Z., Im, H., Lenglet, S., Padovani, L.: Polymorphic functions with set-theoretic types: part 1: syntax, semantics, and evaluation. In: Principles of Programming Languages (POPL) (2014) Castagna, G., Nguyen, K., Xu, Z., Im, H., Lenglet, S., Padovani, L.: Polymorphic functions with set-theoretic types: part 1: syntax, semantics, and evaluation. In: Principles of Programming Languages (POPL) (2014)
15.
Zurück zum Zitat Curien, P.L., Ghelli, G.: Coherence of subsumption, minimum typing and type-checking in f\(_\le \). Math. Struct. Comput. Sci. (MSCS) 2(01), 55 (1992)MathSciNetCrossRef Curien, P.L., Ghelli, G.: Coherence of subsumption, minimum typing and type-checking in f\(_\le \). Math. Struct. Comput. Sci. (MSCS) 2(01), 55 (1992)MathSciNetCrossRef
16.
17.
Zurück zum Zitat Dunfield, J., Krishnaswami, N.R.: Complete and easy bidirectional typechecking for higher-rank polymorphism. In: International Conference on Functional Programming (ICFP) (2013) Dunfield, J., Krishnaswami, N.R.: Complete and easy bidirectional typechecking for higher-rank polymorphism. In: International Conference on Functional Programming (ICFP) (2013)
18.
Zurück zum Zitat Fokkinga, M.M.: Tupling and mutumorphisms. Squiggolist 1(4) (1989) Fokkinga, M.M.: Tupling and mutumorphisms. Squiggolist 1(4) (1989)
19.
Zurück zum Zitat Gaster, B.R., Jones, M.P.: A polymorphic type system for extensible records and variants. Technical report, University of Nottingham (1996) Gaster, B.R., Jones, M.P.: A polymorphic type system for extensible records and variants. Technical report, University of Nottingham (1996)
20.
Zurück zum Zitat Gibbons, J., Wu, N.: Folding domain-specific languages: deep and shallow embeddings (functional pearl). In: ICFP, pp. 339–347. ACM (2014) Gibbons, J., Wu, N.: Folding domain-specific languages: deep and shallow embeddings (functional pearl). In: ICFP, pp. 339–347. ACM (2014)
21.
Zurück zum Zitat Harper, R., Pierce, B.: A record calculus based on symmetric concatenation. In: Principles of Programming Languages (POPL) (1991) Harper, R., Pierce, B.: A record calculus based on symmetric concatenation. In: Principles of Programming Languages (POPL) (1991)
22.
23.
Zurück zum Zitat Herman, D., Tomb, A., Flanagan, C.: Space-efficient gradual typing. High.-Order Symb. Comput. 23(2), 167 (2010)MathSciNetCrossRef Herman, D., Tomb, A., Flanagan, C.: Space-efficient gradual typing. High.-Order Symb. Comput. 23(2), 167 (2010)MathSciNetCrossRef
24.
Zurück zum Zitat Hindley, R.: The principal type-scheme of an object in combinatory logic. Trans. Am. Math. Soc. 146, 29–60 (1969)MathSciNetMATH Hindley, R.: The principal type-scheme of an object in combinatory logic. Trans. Am. Math. Soc. 146, 29–60 (1969)MathSciNetMATH
26.
Zurück zum Zitat Hofer, C., Ostermann, K., Rendel, T., Moors, A.: Polymorphic embedding of DSLs. In: International Conference on Generative Programming and Component Engineering (GPCE) (2008) Hofer, C., Ostermann, K., Rendel, T., Moors, A.: Polymorphic embedding of DSLs. In: International Conference on Generative Programming and Component Engineering (GPCE) (2008)
28.
Zurück zum Zitat Laurent, O.: Intersection types with subtyping by means of cut elimination. Fundam. Inf. 121(1–4), 203–226 (2012)MathSciNetMATH Laurent, O.: Intersection types with subtyping by means of cut elimination. Fundam. Inf. 121(1–4), 203–226 (2012)MathSciNetMATH
29.
Zurück zum Zitat Laurent, O.: A syntactic introduction to intersection types (2012, unpublished note) Laurent, O.: A syntactic introduction to intersection types (2012, unpublished note)
30.
Zurück zum Zitat Laurent, O.: Intersection subtyping with constructors. In: Proceedings of the Ninth Workshop on Intersection Types and Related Systems (2018) Laurent, O.: Intersection subtyping with constructors. In: Proceedings of the Ninth Workshop on Intersection Types and Related Systems (2018)
31.
Zurück zum Zitat Leijen, D.: Extensible records with scoped labels. Trends Funct. Program. 5, 297–312 (2005) Leijen, D.: Extensible records with scoped labels. Trends Funct. Program. 5, 297–312 (2005)
32.
33.
Zurück zum Zitat Morris, J.G., McKinna, J.: Abstracting extensible data types. In: Principles of Programming Languages (POPL) (2019) Morris, J.G., McKinna, J.: Abstracting extensible data types. In: Principles of Programming Languages (POPL) (2019)
34.
Zurück zum Zitat Muehlboeck, F., Tate, R.: Empowering union and intersection types with integrated subtyping. In: OOPSLA (2018) Muehlboeck, F., Tate, R.: Empowering union and intersection types with integrated subtyping. In: OOPSLA (2018)
36.
Zurück zum Zitat Oliveira, B.C.d.S., Shi, Z., Alpuim, J.: Disjoint intersection types. In: International Conference on Functional Programming (ICFP) (2016) Oliveira, B.C.d.S., Shi, Z., Alpuim, J.: Disjoint intersection types. In: International Conference on Functional Programming (ICFP) (2016)
38.
Zurück zum Zitat Pierce, B.C.: A decision procedure for the subtype relation on intersection types with bounded variables. Technical report, Carnegie Mellon University (1989) Pierce, B.C.: A decision procedure for the subtype relation on intersection types with bounded variables. Technical report, Carnegie Mellon University (1989)
39.
Zurück zum Zitat Pierce, B.C.: Programming with intersection types and bounded polymorphism. Ph.D. thesis, University of Pennsylvania (1991) Pierce, B.C.: Programming with intersection types and bounded polymorphism. Ph.D. thesis, University of Pennsylvania (1991)
42.
Zurück zum Zitat Rendel, T., Brachthäuser, J.I., Ostermann, K.: From object algebras to attribute grammars. In: Object-Oriented Programming, Systems Languages and Applications (OOPSLA) (2014) Rendel, T., Brachthäuser, J.I., Ostermann, K.: From object algebras to attribute grammars. In: Object-Oriented Programming, Systems Languages and Applications (OOPSLA) (2014)
43.
Zurück zum Zitat Reynolds, J.C.: Types, abstraction and parametric polymorphism. In: Proceedings of the IFIP 9th World Computer Congress (1983) Reynolds, J.C.: Types, abstraction and parametric polymorphism. In: Proceedings of the IFIP 9th World Computer Congress (1983)
44.
Zurück zum Zitat Reynolds, J.C.: Preliminary design of the programming language Forsythe. Technical report, Carnegie Mellon University (1988) Reynolds, J.C.: Preliminary design of the programming language Forsythe. Technical report, Carnegie Mellon University (1988)
46.
Zurück zum Zitat Oliveira, B.C.d.S., Hinze, R., Löh, A.: Extensible and modular generics for the masses. In: Revised Selected Papers from the Seventh Symposium on Trends in Functional Programming, TFP 2006, Nottingham, United Kingdom, 19–21 April 2006, pp. 199–216 (2006) Oliveira, B.C.d.S., Hinze, R., Löh, A.: Extensible and modular generics for the masses. In: Revised Selected Papers from the Seventh Symposium on Trends in Functional Programming, TFP 2006, Nottingham, United Kingdom, 19–21 April 2006, pp. 199–216 (2006)
47.
Zurück zum Zitat Schwinghammer, J.: Coherence of subsumption for monadic types. J. Funct. Program. (JFP) 19(02), 157 (2008)CrossRef Schwinghammer, J.: Coherence of subsumption for monadic types. J. Funct. Program. (JFP) 19(02), 157 (2008)CrossRef
48.
Zurück zum Zitat Scott, D.: Outline of a mathematical theory of computation. Oxford University Computing Laboratory, Programming Research Group (1970) Scott, D.: Outline of a mathematical theory of computation. Oxford University Computing Laboratory, Programming Research Group (1970)
49.
Zurück zum Zitat Scott, D.S., Strachey, C.: Toward a Mathematical Semantics for Computer Languages, vol. 1. Oxford University Computing Laboratory, Programming Research Group (1971) Scott, D.S., Strachey, C.: Toward a Mathematical Semantics for Computer Languages, vol. 1. Oxford University Computing Laboratory, Programming Research Group (1971)
50.
Zurück zum Zitat Siek, J., Thiemann, P., Wadler, P.: Blame and coercion: together again for the first time. In: Conference on Programming Language Design and Implementation (PLDI) (2015) Siek, J., Thiemann, P., Wadler, P.: Blame and coercion: together again for the first time. In: Conference on Programming Language Design and Implementation (PLDI) (2015)
51.
Zurück zum Zitat Statman, R.: A finite model property for intersection types. Electron. Proc. Theor. Comput. Sci. 177, 1–9 (2015)MathSciNetCrossRef Statman, R.: A finite model property for intersection types. Electron. Proc. Theor. Comput. Sci. 177, 1–9 (2015)MathSciNetCrossRef
52.
Zurück zum Zitat Wadler, P., Blott, S.: How to make ad-hoc polymorphism less ad hoc. In: Proceedings of the 16th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages, POPL 1989 (1989) Wadler, P., Blott, S.: How to make ad-hoc polymorphism less ad hoc. In: Proceedings of the 16th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages, POPL 1989 (1989)
53.
Zurück zum Zitat Wadler, P.: The expression problem. Java-Genericity Mailing List (1998) Wadler, P.: The expression problem. Java-Genericity Mailing List (1998)
54.
Zurück zum Zitat Wand, M.: Complete type inference for simple objects. In: Symposium on Logic in Computer Science (LICS) (1987) Wand, M.: Complete type inference for simple objects. In: Symposium on Logic in Computer Science (LICS) (1987)
55.
Zurück zum Zitat Zhang, W., Oliveira, B.C.d.S: Shallow EDLs and object-oriented programming. Program. J. (2019, to appear) Zhang, W., Oliveira, B.C.d.S: Shallow EDLs and object-oriented programming. Program. J. (2019, to appear)
Metadaten
Titel
Distributive Disjoint Polymorphism for Compositional Programming
verfasst von
Xuan Bi
Ningning Xie
Bruno C. d. S. Oliveira
Tom Schrijvers
Copyright-Jahr
2019
DOI
https://doi.org/10.1007/978-3-030-17184-1_14