www.fgks.org   »   [go: up one dir, main page]

Jump to content

Dependent type: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Hritcu (talk | contribs)
F* now supports tactics
Rescuing 2 sources and tagging 0 as dead. #IABot (v1.5.1)
Line 77: Line 77:
| [[F* (programming language)|F*]] || {{yes}}<ref>{{cite web|url=https://github.com/FStarLang/FStar/commits/master|title=F* changes on GitHub}}</ref> || Functional and imperative || {{yes}}<ref>{{cite web|url=https://github.com/FStarLang/FStar/releases/tag/v0.9.5.0|title=F* v0.9.5.0 release notes on GitHub}}</ref> || {{yes}} || {{yes|Yes (optional)}} || Any pure term || {{yes}} || {{yes}} || {{yes|[[OCaml]], [[F Sharp (programming language)|F#]], and [[C (programming language)|C]]}} || {{yes}}
| [[F* (programming language)|F*]] || {{yes}}<ref>{{cite web|url=https://github.com/FStarLang/FStar/commits/master|title=F* changes on GitHub}}</ref> || Functional and imperative || {{yes}}<ref>{{cite web|url=https://github.com/FStarLang/FStar/releases/tag/v0.9.5.0|title=F* v0.9.5.0 release notes on GitHub}}</ref> || {{yes}} || {{yes|Yes (optional)}} || Any pure term || {{yes}} || {{yes}} || {{yes|[[OCaml]], [[F Sharp (programming language)|F#]], and [[C (programming language)|C]]}} || {{yes}}
|-
|-
| [http://code.google.com/p/guru-lang/ Guru] || {{no}}<ref>{{cite web|url=https://code.google.com/p/guru-lang/source/list|title=Guru SVN}}</ref> || Purely functional<ref name='guru-book'>{{cite web|url=http://guru-lang.googlecode.com/svn/branches/1.0/doc/book.pdf|title=Verified Programming in Guru|author=Aaron Stump|date=6 April 2009|accessdate=28 September 2010}}</ref> || {{yes|hypjoin}}<ref name='hypjoin-paper'>{{cite web|url=http://www.cs.uiowa.edu/~astump/papers/petcher-thesis.pdf|title=Deciding Joinability Modulo Ground Equations in Operational Type Theory|author=Adam Petcher|date=1 April 2008|accessdate=14 October 2010}}</ref> || {{yes}}<ref name='guru-book'/> || {{yes}} || Any term || {{no}} || {{yes}} || {{yes|Carraway}} || {{yes}}
| [http://code.google.com/p/guru-lang/ Guru] || {{no}}<ref>{{cite web|url=https://code.google.com/p/guru-lang/source/list|title=Guru SVN}}</ref> || Purely functional<ref name='guru-book'>{{cite web|url=http://guru-lang.googlecode.com/svn/branches/1.0/doc/book.pdf|title=Verified Programming in Guru|author=Aaron Stump|date=6 April 2009|accessdate=28 September 2010|deadurl=yes|archiveurl=https://web.archive.org/web/20091229234011/http://guru-lang.googlecode.com/svn/branches/1.0/doc/book.pdf|archivedate=29 December 2009|df=}}</ref> || {{yes|hypjoin}}<ref name='hypjoin-paper'>{{cite web|url=http://www.cs.uiowa.edu/~astump/papers/petcher-thesis.pdf|title=Deciding Joinability Modulo Ground Equations in Operational Type Theory|author=Adam Petcher|date=1 April 2008|accessdate=14 October 2010}}</ref> || {{yes}}<ref name='guru-book'/> || {{yes}} || Any term || {{no}} || {{yes}} || {{yes|Carraway}} || {{yes}}
|-
|-
| [[Idris (programming language)|Idris]] || {{yes}}<ref>{{cite web|url=https://github.com/idris-lang/Idris-dev/|title=Idris git repository}}</ref> || Purely functional<ref>{{cite web|url=http://www.cs.st-andrews.ac.uk/~eb/drafts/ifl08.pdf|title=Idris, a language with dependent types - extended abstract}}</ref> || {{yes}}<ref name='idris-compare'>{{cite web|url=http://www.quora.com/How-does-Idris-compare-to-other-dependently-typed-programming-languages|title=How does Idris compare to other dependently-typed programming languages?|author=Edwin Brady}}</ref> || {{yes}} || {{yes|Yes (optional)}} || Any term || {{yes}} || {{no}} || {{yes}} || {{yes|Yes, aggressively}}<ref name='idris-compare'/>
| [[Idris (programming language)|Idris]] || {{yes}}<ref>{{cite web|url=https://github.com/idris-lang/Idris-dev/|title=Idris git repository}}</ref> || Purely functional<ref>{{cite web|url=http://www.cs.st-andrews.ac.uk/~eb/drafts/ifl08.pdf|title=Idris, a language with dependent types - extended abstract|deadurl=yes|archiveurl=https://web.archive.org/web/20110716082621/http://www.cs.st-andrews.ac.uk/~eb/drafts/ifl08.pdf|archivedate=2011-07-16|df=}}</ref> || {{yes}}<ref name='idris-compare'>{{cite web|url=http://www.quora.com/How-does-Idris-compare-to-other-dependently-typed-programming-languages|title=How does Idris compare to other dependently-typed programming languages?|author=Edwin Brady}}</ref> || {{yes}} || {{yes|Yes (optional)}} || Any term || {{yes}} || {{no}} || {{yes}} || {{yes|Yes, aggressively}}<ref name='idris-compare'/>
|-
|-
| [[Matita]] || {{yes}}<ref>{{cite web|url=http://helm.cs.unibo.it/websvn/listing.php?repname=helm&path=%2F&sc=0|title=Matita SVN}}</ref> || Purely functional || {{yes}} || {{yes}} || {{yes}} || Any term || {{yes}} || {{yes}} || {{yes|[[OCaml]]}} || {{yes}}
| [[Matita]] || {{yes}}<ref>{{cite web|url=http://helm.cs.unibo.it/websvn/listing.php?repname=helm&path=%2F&sc=0|title=Matita SVN}}</ref> || Purely functional || {{yes}} || {{yes}} || {{yes}} || Any term || {{yes}} || {{yes}} || {{yes|[[OCaml]]}} || {{yes}}

Revision as of 02:59, 9 September 2017

In computer science and logic, a dependent type is a type whose definition depends on a value. A "pair of integers" is a type. A "pair of integers where the second is greater than the first" is a dependent type because of the dependence on the value. It is an overlapping feature of type theory and type systems. In intuitionistic type theory, dependent types are used to encode logic's quantifiers like "for all" and "there exists". In functional programming languages like Agda, ATS, Coq, Epigram, Idris, and Shen, dependent types prevent bugs by allowing extremely expressive types.

Two common examples of dependent types are dependent functions and dependent pairs. A dependent function's return type may depend on the value (not just type) of an argument. A function that takes a positive integer "n" may return an array of length "n". (Note that this is different from polymorphism and generic programming, both of which include the type as an argument.) A dependent pair may have a second value that depends on the first. It can be used to encode a pair of integers where the second one is greater than the first.

Dependent types add complexity to a type system. Deciding the equality of dependent types in a program may require computations. If arbitrary values are allowed in dependent types, then deciding type equality may involve deciding whether two arbitrary programs produce the same result; hence type checking may become undecidable.

History

Dependent types were created to deepen the connection between programming and logic.[clarification needed]

In 1934, Haskell Curry noticed that the types used in typed lambda calculus, and in its combinatory logic counterpart, followed the same pattern as axioms in propositional logic. Going further, for every proof in the logic, there was a matching function (term) in the programming language. One of Curry's examples was the correspondence between simply typed lambda calculus and intuitionistic logic.[1]

Predicate logic is an extension of propositional logic, adding quantifiers. Howard and de Bruijn extended lambda calculus to match this more powerful logic by creating types for dependent functions, which correspond to "for all", and dependent pairs, which correspond to "there exists".[2]

(Because of this and other work by Howard, propositions-as-types is known as the Curry-Howard correspondence.)

Formal definition

Loosely speaking, dependent types are similar to the type of an indexed family of sets. More formally, given a type in a universe of types , one may have a family of types , which assigns to each term a type . We say that the type varies with .

A function whose type of return value varies with its argument (i.e. there is no fixed codomain) is a dependent function and the type of this function is called dependent product type, pi-type or simply dependent type. For this example, the dependent type would be written as

or as

If is a constant function, the corresponding dependent product type is equivalent to an ordinary function type. That is, is judgementally equal to .

The name 'pi-type' comes from the idea that these may be viewed as a Cartesian product of types. Pi-types can also be understood as models of universal quantifiers.

For example, if we write for -tuples of real numbers, then would be the type of functions which, given a natural number n, return a tuple of real numbers of size n. The usual function space arises as a special case when the range type does not actually depend on the input, e.g. is the type of functions from natural numbers to the real numbers, which is written as in the simply typed lambda calculus.

Polymorphic functions are an important example of dependent functions, that is, functions having dependent type. Given a type, these functions act on elements of that type (or on elements of a type constructed (derived, inherited) from that type). A polymorphic function returning elements of type C would have a polymorphic type written as

Dependent pair type

The opposite of the dependent product type is the dependent pair type, dependent sum type or sigma-type. It is analogous to the coproduct or disjoint union. Sigma-types can also be understood as existential quantifiers. Notationally, it is written as

The dependent pair type captures the idea of an indexed pair, where the type of the second term is dependent on the first. Thus, if

then and . If B is a constant, then the dependent pair type becomes (is judgementally equal to) the product type, that is, an ordinary Cartesian product .

Example as existential quantification

Let be sigma-type quantifying over type with predicate . There exists an such that holds if and only if is inhabited. For example, a is less than or equal to b iff there exists a natural number n and a proof that a+n=b.

Systems of the lambda cube

Henk Barendregt developed the lambda cube as a means of classifying type systems along three axes. The eight corners of the resulting cube-shaped diagram each correspond to a type system, with simply typed lambda calculus in the least expressive corner, and calculus of constructions in the most expressive. The three axes of the cube correspond to three different augmentations of the simply typed lambda calculus: the addition of dependent types, the addition of polymorphism, and the addition of higher kinded type constructors (functions from types to types, for example). The lambda cube is generalized further by pure type systems.

First order dependent type theory

The system of pure first order dependent types, corresponding to the logical framework LF, is obtained by generalising the function space type of the simply typed lambda calculus to the dependent product type.

Second order dependent type theory

The system of second order dependent types is obtained from by allowing quantification over type constructors. In this theory the dependent product operator subsumes both the operator of simply typed lambda calculus and the binder of System F.

Higher order dependently typed polymorphic lambda calculus

The higher order system extends to all four forms of abstraction from the lambda cube: functions from terms to terms, types to types, terms to types and types to terms. The system corresponds to the calculus of constructions whose derivative, the calculus of inductive constructions is the underlying system of the Coq proof assistant.

Simultaneous programming language and logic

The Curry–Howard correspondence implies that types can be constructed that express arbitrarily complex mathematical properties. If the user can supply a constructive proof that a type is inhabited (i.e., that a value of that type exists) then a compiler can check the proof and convert it into executable computer code that computes the value by carrying out the construction. The proof checking feature makes dependently typed languages closely related to proof assistants. The code-generation aspect provides a powerful approach to formal program verification and proof-carrying code, since the code is derived directly from a mechanically verified mathematical proof.

Comparison of languages with dependent types

Language Actively developed Paradigm[fn 1] Tactics Proof terms Termination checking Types can depend on[fn 2] Universes Proof irrelevance Program extraction Extraction erases irrelevant terms
Agda Yes[3] Purely functional Few/limited[fn 3] Yes Yes (optional) Any term Yes (optional)[fn 4] Proof-irrelevant arguments (experimental)[5] Haskell, Javascript Yes[5]
ATS Yes[6] Functional / imperative No[7] Yes Yes Static terms[8] ? Yes Yes Yes
Cayenne No Purely functional No Yes No Any term No No ? ?
Gallina
(Coq)
Yes[9] Purely functional Yes Yes Yes Any term Yes[fn 5] No Haskell, Scheme and OCaml Yes
Dependent ML No[fn 6] ? ? Yes ? Natural numbers ? ? ? ?
F* Yes[10] Functional and imperative Yes[11] Yes Yes (optional) Any pure term Yes Yes OCaml, F#, and C Yes
Guru No[12] Purely functional[13] hypjoin[14] Yes[13] Yes Any term No Yes Carraway Yes
Idris Yes[15] Purely functional[16] Yes[17] Yes Yes (optional) Any term Yes No Yes Yes, aggressively[17]
Matita Yes[18] Purely functional Yes Yes Yes Any term Yes Yes OCaml Yes
NuPRL Yes Purely functional Yes Yes Yes Any term Yes ? Yes ?
PVS Yes ? Yes ? ? ? ? ? ? ?
Sage No[fn 7] Purely functional No No No ? No ? ? ?
Twelf Yes Logic programming ? Yes Yes (optional) Any (LF) term No No ? ?
Xanadu No[19] Imperative ? ? ? ? ? ? ? ?

See also

Footnotes

  1. ^ This refers to the core language, not to any tactic or code generation sublanguage.
  2. ^ Subject to semantic constraints, such as universe constraints
  3. ^ Ring solver[4]
  4. ^ Optional universes, optional universe polymorphism, and optional explicitly specified universes
  5. ^ Universes, automatically inferred universe constraints (not the same as Agda's universe polymorphism) and optional explicit printing of universe constraints
  6. ^ Has been superseded by ATS
  7. ^ Last Sage paper and last code snapshot are both dated 2006

References

  1. ^ Sørensen, Morten Heine B.; Pawel Urzyczyn (1998). "Lectures on the Curry-Howard Isomorphism". {{cite journal}}: Cite journal requires |journal= (help)
  2. ^ Bove, Ana; Peter Dybjer (2008). "Dependent Types at Work" (PDF). {{cite journal}}: Cite journal requires |journal= (help)
  3. ^ "Agda download page".
  4. ^ "Agda Ring Solver".
  5. ^ a b "Announce: Agda 2.2.8".
  6. ^ "ATS2 downloads".
  7. ^ "email from ATS inventor Hongwei Xi".
  8. ^ http://www.ats-lang.org/MYDATA/ATSfoundation.pdf. {{cite web}}: Missing or empty |title= (help)
  9. ^ "Coq CHANGES in Subversion repository".
  10. ^ "F* changes on GitHub".
  11. ^ "F* v0.9.5.0 release notes on GitHub".
  12. ^ "Guru SVN".
  13. ^ a b Aaron Stump (6 April 2009). "Verified Programming in Guru" (PDF). Archived from the original (PDF) on 29 December 2009. Retrieved 28 September 2010. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  14. ^ Adam Petcher (1 April 2008). "Deciding Joinability Modulo Ground Equations in Operational Type Theory" (PDF). Retrieved 14 October 2010.
  15. ^ "Idris git repository".
  16. ^ "Idris, a language with dependent types - extended abstract" (PDF). Archived from the original (PDF) on 2011-07-16. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  17. ^ a b Edwin Brady. "How does Idris compare to other dependently-typed programming languages?".
  18. ^ "Matita SVN".
  19. ^ "Xanadu home page".

Further reading

External links