Implementing Reflection in Nuprl

Total Page:16

File Type:pdf, Size:1020Kb

Implementing Reflection in Nuprl IMPLEMENTING REFLECTION IN NUPRL A Dissertation Presented to the Faculty of the Graduate School of Cornell University in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy by Eli Barzilay January 2006 c 2006 Eli Barzilay ALL RIGHTS RESERVED IMPLEMENTING REFLECTION IN NUPRL Eli Barzilay, Ph.D. Cornell University 2006 Reflection is the ability of some entity to describe itself. In a logical context, it is the ability of a logic to reason about itself. Reflection is, therefore, placed at the core of meta-mathematics, making it an important part of formal reasoning; where it revolves mainly around syntax and semantics — the main challenge is in making the syntax of the logic become part of its semantic domain. Given its importance, it is surprising that logical computer systems tend to avoid the subject, or provide poor tools for reflective work. This is in sharp contrast to the area of programming languages, where reflection is well researched and used in a variety of ways where it plays an central role. One factor in making reflection inaccessible in logical systems is the relative difficulty that is immediately encountered when formalizing syntax: dealing with formal syntax means dealing with structures that involve bindings, and in a logical context it seems natural to use the same formal tools to describe syntax — often limiting the usability of such formalizations to specific theories and toy examples. G¨odelnumbers are an example for a reflective formalism that serves its purpose, yet is impractical as a basis for syntactical reasoning in applied systems. In programming languages, there is a simple yet elegant strategy for imple- menting reflection: instead of making a system that describes itself, the system is made available to itself. We name this direct reflection, where the representation of language features via its semantics is actually part of the semantics itself — unlike the usual practice in formal systems of employing indirect reflection. The advan- tages of this approach is the fact that both the system and its reflected counterpart are inherently identical, making for a lightweight implementation. In this work we develop the formal background and the practical capabilities of an applied system, namely Nuprl, that are needed to support direct reflection of its own syntax. Achieving this is a major milestone on the road for a fully reflected logical system. As we shall demonstrate, our results enable dealing with syntactical meta-mathematical content. BIOGRAPHICAL SKETCH Eli Barzilay was born in Israel in the summer of 1970. In 1980 a coincidence made him switch from Astrophysics to Computer Science as his destination. In 1991 he began his academic education in the Mathematics department of Ben-Gurion University, earning a Bachelor of Science in 1994 and a Master of Science in 1997. At that same year he moved to Ithaca, NY, and began a long chapter of his life that ends in this text. In March 2005 he sat down in front of a blank Emacs screen and typed this paragraph. iii For my father, and for Tali. iv ACKNOWLEDGEMENTS I would like to thank my advisor, Robert Constable, for being able to work on an exciting topic; members on my committee, Greg Morrisett, who provided many enjoyable hours of PL flames, and Barry Perlus for opening my eyes in the digital sense; Stuart Allen, who spent months and years working with me; Aleksey Nogin, who provided motivation in both early and late stages of my work. I also thank the Nuprl group as a whole, who provided extensive feedback during many PRL seminars, and off-line discussions. This work was supported by the DoD Multi- disciplinary University Research Initiative (MURI) program administered by the Office of Naval Research under Grant #N00014-01-1-0765, and NSF Innovative Programming technology for embedded systems #CCR-0208536. But most of all I thank my wife, Regina, who deserves more than these words. v TABLE OF CONTENTS 1 Introduction 1 1.1 Reflection and Art . 4 1.2 Accomplishments . 5 1.3 Outline . 7 2 The Scope of Reflection 12 2.1 Reflection Applied to General Languages . 12 2.2 Reflection in Formal Languages . 17 2.3 Case Study: (Pure) Scheme and Nuprl . 23 2.3.1 Syntax . 24 2.3.2 Semantic Values . 26 2.3.3 Evaluation . 28 2.3.4 Quotations (Representations) . 30 2.3.5 Reflection . 33 2.4 Quasi-Quotations . 34 2.5 Exposing Internals vs. Re-Implementation . 37 2.5.1 Re-Implementation . 37 2.5.2 Exposing Internals . 39 2.5.3 Duplicating Information Considered Harmful . 43 3 Implementing Quotation 45 3.1 Syntactic Sequence Notation . 45 3.2 Nuprl Terms . 46 3.2.1 Term Structure . 47 3.2.2 Interaction . 50 3.2.3 Substitution . 52 3.2.4 Term Meaning: Evaluation . 53 3.3 Syntax Representation Options . 55 3.3.1 Quotation Context . 57 3.3.2 Black-Box Quotations . 58 3.3.3 Using Standard Type Definitions . 59 3.3.4 Operator Shifting . 61 3.3.5 Quasi-Quotations . 62 3.3.6 Using Preprocessing . 63 3.3.7 Operator Shifting and Quasi-Quotations . 66 3.4 Operator Shifting Options: Dealing with Bindings . 68 3.4.1 Concrete Bindings . 71 3.4.2 Abstract Bindings . 73 3.5 Technical Details . 74 3.5.1 The ‘rquote’ Parameter . 75 3.5.2 Display Enhancements . 76 vi 3.5.3 Display Forms . 77 3.5.4 Quote-Related Functionality . 85 3.5.5 Reflection Theory . 86 3.6 Usage Sample . 86 4 Semantics of Shifted Terms 89 4.1 Brief Review . 89 4.2 Semantics of Shifted Operators . 91 4.3 Term Definition . 93 4.4 Operations, Assumptions, and Facts . 94 4.4.1 Important Assumptions and Facts . 95 4.5 Definitions of Shifted Operators . 98 4.6 Defining ‘is subst’...........................102 4.6.1 The ‘is subst’ Rule . 104 4.6.2 Justifying the ‘is subst’ Rules . 105 4.7 Relations to HOAS Work . 110 4.7.1 HOAS Problems . 115 4.7.2 Survey of Proposed Solutions . 116 4.7.3 Nominal Techniques . 120 4.7.4 Comparison with the Nuprl Solution . 125 4.8 Conclusion . 127 5 Formalizing Representation 130 5.1 Design Constraints for a Representation Relation . 130 5.2 Definitions, Facts, and Proofs . 131 5.2.1 Term type ............................131 5.2.2 Atom type............................131 5.2.3 RepsFormation relation constructor . 131 5.2.4 RepsFormation monotonic . 132 5.2.5 RepsFormation fixpoint . 132 5.2.6 reps relation . 132 5.2.7 reps induction . 133 5.2.8 reps is RepsFormation fixpoint . 133 5.2.9 reps closed . 134 5.2.10 reps evaluates . 134 5.2.11 reps unique . 134 5.2.12 reps squiggle . 136 5.2.13 mkSubstFunc constructor . 140 5.2.14 mkSubstFunc generates substitutions . 140 5.2.15 mkTerm constructor . 141 5.2.16 sizeof operator . 142 5.2.17 alpha-renaming preserves size . 142 5.2.18 SubstFunc is mkSubstFunc or a projection . 143 5.2.19 Zero size is projection . 149 vii 5.2.20 Positive size is mkSubstFunc . 150 5.2.21 SubstFunc induction . 151 5.2.22 SubstFunc recursion . 153 5.2.23 q — quotation function . 154 5.2.24 q represents atoms . 156 5.2.25 q represents substitutions . 156 5.2.26 q is a representation . 158 5.2.27 Upward HOAS . 159 5.2.28 unq — unquotation function . 160 5.2.29 unq inverse of q . 161 6 Applying Reflection 163 6.1 Motivating Example . 163 6.2 Extended Syntactic Notation . 164 6.3 The ‘reflection’ theory . 168 6.3.1 term part . 168 6.3.2 is subst part . 168 6.3.3 term eq part . 170 6.3.4 TermAuto part . 170 6.3.5 termin/termof part . 174 6.3.6 up/down part . 175 6.3.7 reps part . 180 6.3.8 term subst part . 181 6.4 The ‘tarski’ theory . 187 7 Conclusions and Future Work 189 7.1 Still Needed . 189 7.2 Future Work . 191 A Glossary 194 B Theory Files 199 B.1 Reflection Theory . 199 B.2 Tarski Theory . 210 Bibliography 221 viii LIST OF FIGURES 3.1 Term parts . 47 3.2 Operator Shifting in PLT-Scheme . 66 3.3 Interacting with quoted terms using colors . 87 4.1 A naive HOAS implementation using Nuprl’s ‘term’ type . 114 4.2 Major components in Urban’s formalism; connections to ours . 123 ix Chapter 1 Introduction Reflection is the ability of some entity to describe itself. It is a deep idea in logic, computer science, linguistics, philosophy, art, and more. Reflection has been a source of philosophical discussions for ages, with the liar paradox and variations (e.g., “This sentence is false.”) being the best known example — allegedly orig- inated by the Greek philosopher Eubulides the Megarian in the fourth century B.C.1, studied in the twelfth century under the name of “insolubles” or “insolu- bilia” [67], etc. Reflection is also a very current topic.
Recommended publications
  • Structured Recursion for Non-Uniform Data-Types
    Structured recursion for non-uniform data-types by Paul Alexander Blampied, B.Sc. Thesis submitted to the University of Nottingham for the degree of Doctor of Philosophy, March 2000 Contents Acknowledgements .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. 1 Chapter 1. Introduction .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. 2 1.1. Non-uniform data-types .. .. .. .. .. .. .. .. .. .. .. .. 3 1.2. Program calculation .. .. .. .. .. .. .. .. .. .. .. .. .. 10 1.3. Maps and folds in Squiggol .. .. .. .. .. .. .. .. .. .. .. 11 1.4. Related work .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. 14 1.5. Purpose and contributions of this thesis .. .. .. .. .. .. .. 15 Chapter 2. Categorical data-types .. .. .. .. .. .. .. .. .. .. .. .. 18 2.1. Notation .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. 19 2.2. Data-types as initial algebras .. .. .. .. .. .. .. .. .. .. 21 2.3. Parameterized data-types .. .. .. .. .. .. .. .. .. .. .. 29 2.4. Calculation properties of catamorphisms .. .. .. .. .. .. .. 33 2.5. Existence of initial algebras .. .. .. .. .. .. .. .. .. .. .. 37 2.6. Algebraic data-types in functional programming .. .. .. .. 57 2.7. Chapter summary .. .. .. .. .. .. .. .. .. .. .. .. .. 61 Chapter 3. Folding in functor categories .. .. .. .. .. .. .. .. .. .. 62 3.1. Natural transformations and functor categories .. .. .. .. .. 63 3.2. Initial algebras in functor categories .. .. .. .. .. .. .. .. 68 3.3. Examples and non-examples .. .. .. .. .. .. .. .. .. .. 77 3.4. Existence of initial algebras in functor categories .. .. .. .. 82 3.5.
    [Show full text]
  • Binary Search Trees
    Introduction Recursive data types Binary Trees Binary Search Trees Organizing information Sum-of-Product data types Theory of Programming Languages Computer Science Department Wellesley College Introduction Recursive data types Binary Trees Binary Search Trees Table of contents Introduction Recursive data types Binary Trees Binary Search Trees Introduction Recursive data types Binary Trees Binary Search Trees Sum-of-product data types Every general-purpose programming language must allow the • processing of values with different structure that are nevertheless considered to have the same “type”. For example, in the processing of simple geometric figures, we • want a notion of a “figure type” that includes circles with a radius, rectangles with a width and height, and triangles with three sides: The name in the oval is a tag that indicates which kind of • figure the value is, and the branches leading down from the oval indicate the components of the value. Such types are known as sum-of-product data types because they consist of a sum of tagged types, each of which holds on to a product of components. Introduction Recursive data types Binary Trees Binary Search Trees Declaring the new figure type in Ocaml In Ocaml we can declare a new figure type that represents these sorts of geometric figures as follows: type figure = Circ of float (* radius *) | Rect of float * float (* width, height *) | Tri of float * float * float (* side1, side2, side3 *) Such a declaration is known as a data type declaration. It consists of a series of |-separated clauses of the form constructor-name of component-types, where constructor-name must be capitalized.
    [Show full text]
  • Recursive Type Generativity
    Recursive Type Generativity Derek Dreyer Toyota Technological Institute at Chicago [email protected] Abstract 1. Introduction Existential types provide a simple and elegant foundation for un- Recursive modules are one of the most frequently requested exten- derstanding generative abstract data types, of the kind supported by sions to the ML languages. After all, the ability to have cyclic de- the Standard ML module system. However, in attempting to extend pendencies between different files is a feature that is commonplace ML with support for recursive modules, we have found that the tra- in mainstream languages like C and Java. To the novice program- ditional existential account of type generativity does not work well mer especially, it seems very strange that the ML module system in the presence of mutually recursive module definitions. The key should provide such powerful mechanisms for data abstraction and problem is that, in recursive modules, one may wish to define an code reuse as functors and translucent signatures, and yet not allow abstract type in a context where a name for the type already exists, mutually recursive functions and data types to be broken into sepa- but the existential type mechanism does not allow one to do so. rate modules. Certainly, for simple examples of recursive modules, We propose a novel account of recursive type generativity that it is difficult to convincingly argue why ML could not be extended resolves this problem. The basic idea is to separate the act of gener- in some ad hoc way to allow them. However, when one considers ating a name for an abstract type from the act of defining its under- the semantics of a general recursive module mechanism, one runs lying representation.
    [Show full text]
  • Data Structures Are Ways to Organize Data (Informa- Tion). Examples
    CPSC 211 Data Structures & Implementations (c) Texas A&M University [ 1 ] What are Data Structures? Data structures are ways to organize data (informa- tion). Examples: simple variables — primitive types objects — collection of data items of various types arrays — collection of data items of the same type, stored contiguously linked lists — sequence of data items, each one points to the next one Typically, algorithms go with the data structures to manipulate the data (e.g., the methods of a class). This course will cover some more complicated data structures: how to implement them efficiently what they are good for CPSC 211 Data Structures & Implementations (c) Texas A&M University [ 2 ] Abstract Data Types An abstract data type (ADT) defines a state of an object and operations that act on the object, possibly changing the state. Similar to a Java class. This course will cover specifications of several common ADTs pros and cons of different implementations of the ADTs (e.g., array or linked list? sorted or unsorted?) how the ADT can be used to solve other problems CPSC 211 Data Structures & Implementations (c) Texas A&M University [ 3 ] Specific ADTs The ADTs to be studied (and some sample applica- tions) are: stack evaluate arithmetic expressions queue simulate complex systems, such as traffic general list AI systems, including the LISP language tree simple and fast sorting table database applications, with quick look-up CPSC 211 Data Structures & Implementations (c) Texas A&M University [ 4 ] How Does C Fit In? Although data structures are universal (can be imple- mented in any programming language), this course will use Java and C: non-object-oriented parts of Java are based on C C is not object-oriented We will learn how to gain the advantages of data ab- straction and modularity in C, by using self-discipline to achieve what Java forces you to do.
    [Show full text]
  • Recursive Type Generativity
    JFP 17 (4 & 5): 433–471, 2007. c 2007 Cambridge University Press 433 doi:10.1017/S0956796807006429 Printed in the United Kingdom Recursive type generativity DEREK DREYER Toyota Technological Institute, Chicago, IL 60637, USA (e-mail: [email protected]) Abstract Existential types provide a simple and elegant foundation for understanding generative abstract data types of the kind supported by the Standard ML module system. However, in attempting to extend ML with support for recursive modules, we have found that the traditional existential account of type generativity does not work well in the presence of mutually recursive module definitions. The key problem is that, in recursive modules, one may wish to define an abstract type in a context where a name for the type already exists, but the existential type mechanism does not allow one to do so. We propose a novel account of recursive type generativity that resolves this problem. The basic idea is to separate the act of generating a name for an abstract type from the act of defining its underlying representation. To define several abstract types recursively, one may first “forward-declare” them by generating their names, and then supply each one’s identity secretly within its own defining expression. Intuitively, this can be viewed as a kind of backpatching semantics for recursion at the level of types. Care must be taken to ensure that a type name is not defined more than once, and that cycles do not arise among “transparent” type definitions. In contrast to the usual continuation-passing interpretation of existential types in terms of universal types, our account of type generativity suggests a destination-passing interpretation.
    [Show full text]
  • Compositional Data Types
    Compositional Data Types Patrick Bahr Tom Hvitved Department of Computer Science, University of Copenhagen Universitetsparken 1, 2100 Copenhagen, Denmark {paba,hvitved}@diku.dk Abstract require the duplication of functions which work both on general and Building on Wouter Swierstra’s Data types `ala carte, we present a non-empty lists. comprehensive Haskell library of compositional data types suitable The situation illustrated above is an ubiquitous issue in com- for practical applications. In this framework, data types and func- piler construction: In a compiler, an abstract syntax tree (AST) tions on them can be defined in a modular fashion. We extend the is produced from a source file, which then goes through different existing work by implementing a wide array of recursion schemes transformation and analysis phases, and is finally transformed into including monadic computations. Above all, we generalise recur- the target code. As functional programmers, we want to reflect the sive data types to contexts, which allow us to characterise a special changes of each transformation step in the type of the AST. For ex- yet frequent kind of catamorphisms. The thus established notion of ample, consider the desugaring phase of a compiler which reduces term homomorphisms allows for flexible reuse and enables short- syntactic sugar to the core syntax of the object language. To prop- cut fusion style deforestation which yields considerable speedups. erly reflect this structural change also in the types, we have to create We demonstrate our framework in the setting of compiler con- and maintain a variant of the data type defining the AST for the core struction, and moreover, we compare compositional data types with syntax.
    [Show full text]
  • 4. Types and Polymorphism
    4. Types and Polymorphism Oscar Nierstrasz Static types ok Semantics ok Syntax ok Program text Roadmap > Static and Dynamic Types > Type Completeness > Types in Haskell > Monomorphic and Polymorphic types > Hindley-Milner Type Inference > Overloading References > Paul Hudak, “Conception, Evolution, and Application of Functional Programming Languages,” ACM Computing Surveys 21/3, Sept. 1989, pp 359-411. > L. Cardelli and P. Wegner, “On Understanding Types, Data Abstraction, and Polymorphism,” ACM Computing Surveys, 17/4, Dec. 1985, pp. 471-522. > D. Watt, Programming Language Concepts and Paradigms, Prentice Hall, 1990 3 Conception, Evolution, and Application of Functional Programming Languages http://scgresources.unibe.ch/Literature/PL/Huda89a-p359-hudak.pdf On Understanding Types, Data Abstraction, and Polymorphism http://lucacardelli.name/Papers/OnUnderstanding.A4.pdf Roadmap > Static and Dynamic Types > Type Completeness > Types in Haskell > Monomorphic and Polymorphic types > Hindley-Milner Type Inference > Overloading What is a Type? Type errors: ? 5 + [ ] ERROR: Type error in application *** expression : 5 + [ ] *** term : 5 *** type : Int *** does not match : [a] A type is a set of values? > int = { ... -2, -1, 0, 1, 2, 3, ... } > bool = { True, False } > Point = { [x=0,y=0], [x=1,y=0], [x=0,y=1] ... } 5 The notion of a type as a set of values is very natural and intuitive: Integers are a set of values; the Java type JButton corresponds to all possible instance of the JButton class (or any of its possible subclasses). What is a Type? A type is a partial specification of behaviour? > n,m:int ⇒ n+m is valid, but not(n) is an error > n:int ⇒ n := 1 is valid, but n := “hello world” is an error What kinds of specifications are interesting? Useful? 6 A Java interface is a simple example of a partial specification of behaviour.
    [Show full text]
  • Computing Lectures
    Computing Lectures 1 R Basics Introduction to computing/programming using slides. Using R as a pocket calculator: • arithmetic operators (+, -, *, /, and ^) • elementary functions (exp and log, sin and cos) • Inf and NaN • pi and options(digits) • comparison operators (>, >=, <, <=, ==, !=): informally introduce logicals which will be discussed in more detail in unit 2. Using variables: • assignment using <- (\gets"): binding symbols to values) • inspect the binding (show the value of an object) by typing the symbol (name of the object): auto-prints. Show that explicitly calling print() has the same effect. • inspect available bindings (list objects) using ls() or objects() • remove bindings (\delete objects") using rm() Using sequences: • sequences, also known as vectors, can be combined using c() • functions seq() and rep() allow efficient creation of certain patterned sequences; shortcut : • subsequences can be selected by subscripting via [, using positive (numeric) indices (positions of elements to select) or negative indices (positions of elements to drop) • can compute with whole sequences: vectorization • summary functions: sum, prod, max, min, range • can also have sequences of character strings • sequences can also have names: use R> x <- c(A = 1, B = 2, C = 3) R> names(x) [1] "A" "B" "C" R> ## Change the names. R> names(x) <- c("d", "e", "f") R> x 1 d e f 1 2 3 R> ## Remove the names. R> names(x) <- NULL R> x [1] 1 2 3 for extracting and replacing the names, aka as getting and setting Using functions: • start with the simple standard example R> hell <- function() writeLines("Hello world.") to explain the constituents of functions: argument list (formals), body, and environment.
    [Show full text]
  • Table of Contents
    A Comprehensive Introduction to Vista Operating System Table of Contents Chapter 1 - Windows Vista Chapter 2 - Development of Windows Vista Chapter 3 - Features New to Windows Vista Chapter 4 - Technical Features New to Windows Vista Chapter 5 - Security and Safety Features New to Windows Vista Chapter 6 - Windows Vista Editions Chapter 7 - Criticism of Windows Vista Chapter 8 - Windows Vista Networking Technologies Chapter 9 -WT Vista Transformation Pack _____________________ WORLD TECHNOLOGIES _____________________ Abstraction and Closure in Computer Science Table of Contents Chapter 1 - Abstraction (Computer Science) Chapter 2 - Closure (Computer Science) Chapter 3 - Control Flow and Structured Programming Chapter 4 - Abstract Data Type and Object (Computer Science) Chapter 5 - Levels of Abstraction Chapter 6 - Anonymous Function WT _____________________ WORLD TECHNOLOGIES _____________________ Advanced Linux Operating Systems Table of Contents Chapter 1 - Introduction to Linux Chapter 2 - Linux Kernel Chapter 3 - History of Linux Chapter 4 - Linux Adoption Chapter 5 - Linux Distribution Chapter 6 - SCO-Linux Controversies Chapter 7 - GNU/Linux Naming Controversy Chapter 8 -WT Criticism of Desktop Linux _____________________ WORLD TECHNOLOGIES _____________________ Advanced Software Testing Table of Contents Chapter 1 - Software Testing Chapter 2 - Application Programming Interface and Code Coverage Chapter 3 - Fault Injection and Mutation Testing Chapter 4 - Exploratory Testing, Fuzz Testing and Equivalence Partitioning Chapter 5
    [Show full text]
  • Scrap Your Boilerplate: a Practical Design Pattern for Generic Programming
    Scrap Your Boilerplate: A Practical Design Pattern for Generic Programming Ralf Lammel¨ Simon Peyton Jones Vrije Universiteit, Amsterdam Microsoft Research, Cambridge Abstract specified department as spelled out in Section 2. This is not an un- We describe a design pattern for writing programs that traverse data usual situation. On the contrary, performing queries or transforma- structures built from rich mutually-recursive data types. Such pro- tions over rich data structures, nowadays often arising from XML grams often have a great deal of “boilerplate” code that simply schemata, is becoming increasingly important. walks the structure, hiding a small amount of “real” code that con- Boilerplate code is tiresome to write, and easy to get wrong. More- stitutes the reason for the traversal. over, it is vulnerable to change. If the schema describing the com- Our technique allows most of this boilerplate to be written once and pany’s organisation changes, then so does every algorithm that re- for all, or even generated mechanically, leaving the programmer curses over that structure. In small programs which walk over one free to concentrate on the important part of the algorithm. These or two data types, each with half a dozen constructors, this is not generic programs are much more adaptive when faced with data much of a problem. In large programs, with dozens of mutually structure evolution because they contain many fewer lines of type- recursive data types, some with dozens of constructors, the mainte- specific code. nance burden can become heavy. Our approach is simple to understand, reasonably efficient, and it handles all the data types found in conventional functional program- Generic programming techniques aim to eliminate boilerplate code.
    [Show full text]
  • Lecture 5. Data Types and Type Classes Functional Programming
    Lecture 5. Data types and type classes Functional Programming [Faculty of Science Information and Computing Sciences] 0 I function call and return as only control-flow primitive I no loops, break, continue, goto I instead: higher-order functions! Goal of typed purely functional programming: programs that are easy to reason about So far: I data-flow only through function arguments and return values I no hidden data-flow through mutable variables/state I instead: tuples! [Faculty of Science Information and Computing Sciences] 1 Goal of typed purely functional programming: programs that are easy to reason about So far: I data-flow only through function arguments and return values I no hidden data-flow through mutable variables/state I instead: tuples! I function call and return as only control-flow primitive I no loops, break, continue, goto I instead: higher-order functions! [Faculty of Science Information and Computing Sciences] 1 I high-level declarative data structures I no explicit reference-based data structures I instead: (immutable) algebraic data types! Goal of typed purely functional programming: programs that are easy to reason about Today: I (almost) unique types I no inheritance hell I instead of classes + inheritance: variant types! I (almost): type classes [Faculty of Science Information and Computing Sciences] 2 Goal of typed purely functional programming: programs that are easy to reason about Today: I (almost) unique types I no inheritance hell I instead of classes + inheritance: variant types! I (almost): type classes
    [Show full text]
  • Pure Subtype Systems: a Type Theory for Extensible Software
    Pure Subtype Systems: A Type Theory for Extensible Software DeLesley Hutchins I V N E R U S E I T H Y T O H F G E R D I N B U Doctor of Philosophy Laboratory for Foundations of Computer Science School of Informatics University of Edinburgh 2009 Abstract This thesis presents a novel approach to type theory called “pure subtype systems”, and a core calculus called DEEP which is based on that approach. DEEP is capable of modeling a number of interesting language techniques that have been proposed in the literature, including mixin modules, virtual classes, feature-oriented programming, and partial evaluation. The design of DEEP was motivated by two well-known problems: “the expression problem”, and “the tag elimination problem.” The expression problem is concerned with the design of an interpreter that is extensible, and requires an advanced module system. The tag elimination problem is concerned with the design of an interpreter that is efficient, and requires an advanced partial evaluator. We present a solution in DEEP that solves both problems simultaneously, which has never been done before. These two problems serve as an “acid test” for advanced type theories, because they make heavy demands on the static type system. Our solution in DEEP makes use of the following capabilities. (1) Virtual types are type definitions within a module that can be extended by clients of the module. (2) Type definitions may be mutually recursive. (3) Higher-order subtyping and bounded quantification are used to represent partial information about types. (4) Dependent types and singleton types provide increased type precision.
    [Show full text]