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 IndexedInductiveDefinition
    Definition Classes
    induction
  • DataCons
  • Empty

case class DataCons[H <: Term with Subs[H], F <: Term with Subs[F], C <: Term with Subs[C], Index <: HList, IF <: Term with Subs[IF], IDF <: Term with Subs[IDF], IDFT <: Term with Subs[IDFT], D <: Term with Subs[D]](data: D, cons: Term, defn: (D) => (IDF) => (H) => Option[C], tail: IndexedInductiveDefinition[H, F, C, Index, IF, IDF, IDFT], replacement: (Term) => (Term) => (IDFT) => Option[DataCons[H, F, C, Index, IF, IDF, IDFT, D]] = (_: Term) => (_: Term) => (_: IDFT) => None)(implicit evidence$3: TermList[Index]) extends IndexedInductiveDefinition[H, F, C, Index, IF, IDF, IDFT] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, IndexedInductiveDefinition[H, F, C, Index, IF, IDF, IDFT], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DataCons
  2. Serializable
  3. Product
  4. Equals
  5. IndexedInductiveDefinition
  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 DataCons(data: D, cons: Term, defn: (D) => (IDF) => (H) => Option[C], tail: IndexedInductiveDefinition[H, F, C, Index, IF, IDF, IDFT], replacement: (Term) => (Term) => (IDFT) => Option[DataCons[H, F, C, Index, IF, IDF, IDFT, D]] = (_: Term) => (_: Term) => (_: IDFT) => None)(implicit arg0: TermList[Index])

Type Members

  1. case class Funcs(ind: Index) extends IndInducFuncLike[H, C, F, IDFT] with Product with Serializable
    Definition Classes
    IndexedInductiveDefinition

Value Members

  1. val W: IndexedInductiveDefinition.W.type
    Definition Classes
    DataConsIndexedInductiveDefinition
  2. val Xs: IndexedInductiveDefinition.Xs.type
    Definition Classes
    DataConsIndexedInductiveDefinition
  3. def caseFn(f: => IDF)(arg: H): Option[C]
    Definition Classes
    DataConsIndexedInductiveDefinition
  4. val cons: Term
  5. val data: D
  6. def dataSubs(that: IndexedInductiveDefinition[H, F, C, Index, IF, IDF, IDFT], x: Term, y: Term): IndexedInductiveDefinition[H, F, C, Index, IF, IDF, IDFT]
    Definition Classes
    DataConsIndexedInductiveDefinition
  7. val defn: (D) => (IDF) => (H) => Option[C]
  8. val defnData: Vector[Term]
    Definition Classes
    DataConsIndexedInductiveDefinition
  9. val family: TypFamilyMap[H, F, C, Index, IF, IDF, IDFT]
    Definition Classes
    DataConsIndexedInductiveDefinition
  10. def fromData(data: Vector[Term]): DataCons[H, F, C, Index, IF, IDF, IDFT, D]
    Definition Classes
    DataConsIndexedInductiveDefinition
  11. val intros: Vector[Term]
    Definition Classes
    DataConsIndexedInductiveDefinition
  12. lazy val iterDepFunc: IDF
    Definition Classes
    IndexedInductiveDefinition
  13. def productElementNames: Iterator[String]
    Definition Classes
    Product
  14. val replacement: (Term) => (Term) => (IDFT) => Option[DataCons[H, F, C, Index, IF, IDF, IDFT, D]]
  15. def subs(x: Term, y: Term): IndexedInductiveDefinition[H, F, C, Index, IF, IDF, IDFT]
    Definition Classes
    DataConsIndexedInductiveDefinition
  16. val tail: IndexedInductiveDefinition[H, F, C, Index, IF, IDF, IDFT]