Packages

  • package root
    Definition Classes
    root
  • package provingground

    This is work towards automated theorem proving based on learning, using homotopy type theory (HoTT) as foundations and natural language processing.

    This is work towards automated theorem proving based on learning, using homotopy type theory (HoTT) as foundations and natural language processing.

    The implementation of homotopy type theory is split into:

    • the object HoTT with terms, types, functions and dependent functions, pairs etc
    • the package induction with general inductive types and recursion/induction on these.

    The learning package has the code for learning.

    Scala code, including the spire library, is integrated with homotopy type theory in the scalahott package

    We have implemented a functor based approach to translation in the translation package, used for nlp as well as serialization and parsing.

    The library package is contains basic structures implemented in HoTT.

    Definition Classes
    root
  • package induction

    Much of the richness of HoTT is in the definitions of Inductive types (and their indexed counterparts) and of (dependent) functions on these by recursion and induction These are implemented using several layers of recursive definitions and diagonals (i.e., fixed points).

    Much of the richness of HoTT is in the definitions of Inductive types (and their indexed counterparts) and of (dependent) functions on these by recursion and induction These are implemented using several layers of recursive definitions and diagonals (i.e., fixed points). In HoTT, recursion and induction are applications of (dependent) functions rec_W,X and ind_W, Xs to the definition data.

    It is useful to capture information regarding inductive types and the recursion and induction functions in scala types. Our implementation is designed to do this.

    Inductive Type Definitions

    Inductive types are specified by introduction rules. Each introduction rule is specified in ConstructorShape (without specifying the type) and ConstructorTL including the specific type. The full definition is in ConstructorSeqTL.

    Recursion and Induction functions

    These are defined recursively, first for each introduction rule and then for the inductive type as a whole. A subtlety is that the scala type of the rec_W,X and induc_W, Xs functions depends on the scala type of the codomain X (or family Xs). To make these types visible, some type level calculations using implicits are done, giving traits ConstructorPatternMap and ConstructorSeqMap that have recursive definition of the recursion and induction functions, the former for the case of a single introduction rule. Traits ConstructorSeqMapper and ConstructorPatternMapper provide the lifts.

    Indexed Versions

    There are indexed versions of all these definitions, to work with indexed inductive type families.

    Definition Classes
    provingground
  • object ConstructorSeqMap
    Definition Classes
    induction
  • Cons
  • ConsIndException
  • Empty
  • InducDataSym
  • RecDataSym

case class Empty[C <: Term with Subs[C], H <: Term with Subs[H]](W: Typ[H]) extends ConstructorSeqMap[C, H, Func[H, C], FuncLike[H, C], HNil] with Product with Serializable

ConstructorSeqMap for an empty sequence of introduction rules

Linear Supertypes
Serializable, Product, Equals, ConstructorSeqMap[C, H, Func[H, C], FuncLike[H, C], HNil], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Empty
  2. Serializable
  3. Product
  4. Equals
  5. ConstructorSeqMap
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Empty(W: Typ[H])

Value Members

  1. val W: Typ[H]

    the inductive type being defined

    the inductive type being defined

    Definition Classes
    EmptyConstructorSeqMap
  2. def induc(fibre: Func[H, Typ[C]]): FuncLike[H, C]

    inductive definition function ind_W, Xs

    inductive definition function ind_W, Xs

    Definition Classes
    ConstructorSeqMap
  3. def inducDataLambda(fibre: Func[H, Typ[C]]): (FuncLike[H, C]) => FuncLike[H, C]

    converts an inductive definition built by InductiveDefinition to a lambda

    converts an inductive definition built by InductiveDefinition to a lambda

    Definition Classes
    EmptyConstructorSeqMap
  4. def inducDefn(fibre: Func[H, Typ[C]]): InductiveDefinition.Empty[H, C]

    inductive definition function ind_W, X in raw form

    inductive definition function ind_W, X in raw form

    Definition Classes
    EmptyConstructorSeqMap
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. def rec(X: Typ[C]): Func[H, C]

    the recursion function rec_W,X

    the recursion function rec_W,X

    Definition Classes
    ConstructorSeqMap
  7. def recDataLambda(X: Typ[C]): (Func[H, C]) => Func[H, C]

    converts a recursive definition built by RecursiveDefinition to a lambda

    converts a recursive definition built by RecursiveDefinition to a lambda

    Definition Classes
    EmptyConstructorSeqMap
  8. def recDefn(X: Typ[C]): RecursiveDefinition.Empty[H, C]

    recursive definition function rec_W, X in raw form

    recursive definition function rec_W, X in raw form

    Definition Classes
    EmptyConstructorSeqMap
  9. def subs(x: Term, y: Term): Empty[C, H]
    Definition Classes
    EmptyConstructorSeqMap