Dependent type

Dependent type
Type systems

Type safety
Inferred vs. Manifest
Dynamic vs. Static
Strong vs. Weak
Nominal vs. Structural
Dependent typing
Duck typing
Latent typing
Linear typing
Uniqueness typing

This box: view · talk · edit

In computer science and logic, a dependent type is a type that depends on a value. Dependent types play a central role in intuitionistic type theory and in the design of functional programming languages like ATS, Agda and Epigram.

An example is the type of n-tuples of real numbers. This is a dependent type because the type depends on the value n.

Deciding 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 becomes undecidable.

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.

Contents

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.

Writing \mbox{Vec}({\mathbb R},n) for n-tuples of real numbers, as above, \Pi n:{\mathbb N}.\mbox{Vec}({\mathbb R},n) stands for the type of functions which given a natural number n returns 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. \Pi n:{\mathbb N}.{\mathbb R} is the type of functions from natural numbers to the real numbers, written as {\mathbb N}\to{\mathbb R} in the simply typed lambda calculus.

Second order dependent type theory

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

Higher order dependently typed polymorphic lambda calculus

The higher order system λΠω extends λΠ2 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.

Object-oriented programming

Some recent research[1] has been directed at combining dependent type theory with object-oriented programming.

Comparison

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[2] Purely functional Few/limited[fn 3] Yes Yes (optional) Any term Yes (optional)[fn 4] Proof-irrelevant arguments (experimental)[4] Haskell Yes[4]
ATS Yes[5] Functional / imperative No[6] Yes ? ? ? ? Yes ?
Cayenne No Purely functional No Yes No Any term No No ? ?
Coq Yes[7] Purely functional Yes Yes Yes Any term Yes[fn 5] Yes Haskell, Scheme and ML Yes
Dependent ML No[fn 6] ? ? Yes ? Natural numbers ? ? ? ?
Epigram 2 Yes[8] Purely functional No Coming soon[dated info] By construction Any term Coming soon[dated info] Coming soon[dated info] Coming soon[dated info] Coming soon[dated info]
Guru [1] Yes[9] Purely functional[10] hypjoin[11] Yes[10] Yes Any term No Yes Carraway Yes
Idris [2] Yes[12] Purely functional[13] Yes[14] Yes Coming soon[dated info] Any term No No Yes Yes, aggressively[14]
Matita [3] Yes[15] Purely functional Yes Yes Yes Any term Yes ? O'Caml ?
NuPRL No ? ? ? ? ? ? ? Yes ?
PVS ? ? Yes ? ? ? ? ? ? ?
Sage [4] ? Hybrid typechecking ? ? ? ? ? ? ? ?
Twelf Yes Logic programming ? Yes Yes (optional) Any (LF) term No No ? ?
Xanadu [5] No[16] Imperative ? ? ? ? ? ? ? ?

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[3]
  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

See also

Further reading

References

  1. ^ Anton Setzer (2007). "Object-oriented programming in dependent type theory". In Henrik Nilsson. Trends in Functional Programming, vol. 7. Intellect. pp. 91–108. http://www.cs.swan.ac.uk/~csetzer/articles/objectOrientedProgrammingInDepTypeTheoryTfp2006PostProceedings.pdf. 
  2. ^ "Agda download page". http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Main.Download. 
  3. ^ "Agda Ring Solver". http://www.cs.nott.ac.uk/~nad/listings/lib/Algebra.RingSolver.html. 
  4. ^ a b "Announce: Agda 2.2.8". http://permalink.gmane.org/gmane.comp.lang.agda/2051. 
  5. ^ "ATS Changelog". http://www.ats-lang.org/CHANGELOG/changelog.html. 
  6. ^ "email from ATS inventor Hongwei Xi". http://sourceforge.net/mailarchive/message.php?msg_id=27050673. 
  7. ^ "Coq CHANGES in Subversion repository". https://gforge.inria.fr/scm/viewvc.php/trunk/CHANGES?root=coq&view=log. 
  8. ^ "Epigram homepage". http://www.e-pig.org/. 
  9. ^ "Guru SVN (1.0 branch)". http://code.google.com/p/guru-lang/source/browse/#svn/branches/1.0/guru. 
  10. ^ a b Aaron Stump (6 April 2009). "Verified Programming in Guru". http://guru-lang.googlecode.com/svn/branches/1.0/doc/book.pdf. Retrieved 28 September 2010. 
  11. ^ Adam Petcher (1 April 2008). "Deciding Joinability Modulo Ground Equations in Operational Type Theory". http://www.cs.uiowa.edu/~astump/papers/petcher-thesis.pdf. Retrieved 14 October 2010. 
  12. ^ "Idris git repository". http://github.com/edwinb/Idris. 
  13. ^ "Idris, a language with dependent types - extended abstract". http://www.cs.st-andrews.ac.uk/~eb/drafts/ifl08.pdf. 
  14. ^ a b Edwin Brady. "How does Idris compare to other dependently-typed programming languages?". http://www.quora.com/How-does-Idris-compare-to-other-dependently-typed-programming-languages. 
  15. ^ "Matita SVN". http://helm.cs.unibo.it/websvn/listing.php?repname=helm&path=%2F&sc=0. 
  16. ^ "Xanadu home page". http://www.cs.bu.edu/~hwxi/Xanadu/Xanadu.html. 

Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • Type system — Type systems Type safety Inferred vs. Manifest Dynamic vs. Static Strong vs. Weak Nominal vs. Structural Dependent typing Duck typing Latent typing Linear typing Uniqueness typing …   Wikipedia

  • Dependent ML — is an experimental functional programming language proposed by Hongwei Xi and Frank Pfenning. Dependent ML extends ML by a restricted notion of dependent types: types may be dependent on static indices of type Nat. Dependent ML employs a… …   Wikipedia

  • Dependent personality disorder — Classification and external resources ICD 10 F60.7 ICD 9 301.6 …   Wikipedia

  • type 1 diabetes — tīp wən n diabetes of a form that usu. develops during childhood or adolescence and is characterized by a severe deficiency of insulin secretion resulting from atrophy of the islets of Langerhans and causing hyperglycemia and a marked tendency to …   Medical dictionary

  • type 2 diabetes — tü n diabetes mellitus of a common form that develops esp. in adults and most often in obese individuals and that is characterized by hyperglycemia resulting from impaired insulin utilization coupled with the body s inability to compensate with… …   Medical dictionary

  • Type II topoisomerase — Type II topoisomerases cut both strands of the DNA helix simultaneously in order to change the linking number of the molecule. FunctionOnce cut, the ends of the DNA are separated, and a second DNA duplex is passed through the break. Following… …   Wikipedia

  • Type 1 — or Type I may refer to:*Bugatti Type 1, an automobile *Diabetes mellitus type 1, insulin dependent diabetes *Type 1 37 mm Anti Tank Gun *Type 1 47 mm Anti Tank Gun *Type 1 encryption, a cryptographical certification *Type 1 Gumbel distribution, a …   Wikipedia

  • type — n 1 *symbol, emblem, attribute Analogous words: *sign, mark, token: intimation, suggestion (see corresponding verbs at SUGGEST 1): adumbration, shadowing (see corresponding verbs at SUGGEST 2) Antonyms: antitype 2 Type, kind, sort, stripe …   New Dictionary of Synonyms

  • Type II — Type II, =noninsulin dependent diabetes mellitus …   Useful english dictionary

  • Type I — Type I, =insulin dependent diabetes mellitus …   Useful english dictionary

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”