A typechecker for intensional MLTT without elaboration.
 
 
Go to file
Rachel Lambda Samuelsson 1560c7ce8f removed backtracking behaviour of tarr, parser is ~400x faster now 2022-07-28 04:24:48 +02:00
src removed backtracking behaviour of tarr, parser is ~400x faster now 2022-07-28 04:24:48 +02:00
tests removed backtracking behaviour of tarr, parser is ~400x faster now 2022-07-28 04:24:48 +02:00
.gitignore initial commit 2022-04-23 15:18:06 +02:00
README.md remove repl from todo 2022-07-26 23:07:43 +02:00
makefile definition system, repl 2022-07-26 23:07:13 +02:00
pi.ipkg definition system, repl 2022-07-26 23:07:13 +02:00

README.md

pi

A dependently typed system

Implemented

  • A Basic dependent lambda calculus

    • lambda abstractions
    • variables
    • pi types
    • type of types
  • let … in …

  • Unit type

  • Empty type

  • Natural numbers

  • Σ Types

TODO

  • Performence optimisation

    • Parsing !!! (this is like 90% of the time currently lmao)
    • Memoize normalisation and conversion somehow?
  • Universes

  • Implicit arguments

  • (indexed) inductive datatypes

  • Write down the rules (Ill not get this far)

  • Compile to scheme

References

Some of the material I found helpful in groking dependent type checking: