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 ConstructorPatternMap
    Definition Classes
    induction
  • CnstDepFuncPtnMap
  • CnstFncPtnMap
  • Debug
  • FuncPtnMap
  • IdTargMap
  • RecursiveConstructorPatternMap

case class IdTargMap[C <: Term with Subs[C], H <: Term with Subs[H]]() extends ConstructorPatternMap[C, H, H, C, C] with Product with Serializable

ConstructorPatternMap for recursion, induction corresponding to the constant shape W

Linear Supertypes
Serializable, Product, Equals, ConstructorPatternMap[C, H, H, C, C], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IdTargMap
  2. Serializable
  3. Product
  4. Equals
  5. ConstructorPatternMap
  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 IdTargMap()

Type Members

  1. type InducDataType = C
  2. type RecDataType = C

Value Members

  1. def codFromData(d: RecDataType): Typ[C]
    Definition Classes
    IdTargMapConstructorPatternMap
  2. def inducDataTyp(w: Typ[H], xs: Func[H, Typ[C]])(cons: H): Typ[InducDataType]

    domain containing the induction data for the constructor, i.e., the HoTT type of the induction data.

    domain containing the induction data for the constructor, i.e., the HoTT type of the induction data.

    Definition Classes
    IdTargMapConstructorPatternMap
  3. def inducDefCase(cons: H, data: C, f: => FuncLike[H, C]): (Term) => Option[C]

    given a term, matches to see if this is the image of a given (quasi)-constructor, with this constructor pattern.

    given a term, matches to see if this is the image of a given (quasi)-constructor, with this constructor pattern. optionally returns simplification (if the term matches).

    cons

    constructor, actually quasi-constructor, with which to match.

    data

    definition data for the image of the constructor.

    f

    the function being defined inductively, to be used recursively in definition.

    Definition Classes
    IdTargMapConstructorPatternMap
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. def recDataTyp(w: Typ[H], x: Typ[C]): Typ[C]

    domain containing the recursion data for the constructor, i.e., the HoTT type of recursion data.

    domain containing the recursion data for the constructor, i.e., the HoTT type of recursion data.

    Definition Classes
    IdTargMapConstructorPatternMap
  6. def recDefCase(cons: H, data: C, f: => Func[H, C]): (H) => Option[C]

    given a term, matches to see if this is the image of a given (quasi)-constructor, with this constructor pattern.

    given a term, matches to see if this is the image of a given (quasi)-constructor, with this constructor pattern. optionally returns simplification (if the term matches), determined by the recursion data.

    cons

    constructor, actually quasi-constructor, with which to match.

    data

    definition data for the image of the constructor.

    f

    the function being defined recursively, to be used recursively in definition.

    Definition Classes
    IdTargMapConstructorPatternMap
  7. def subs(x: Term, y: Term): IdTargMap[C, H]
    Definition Classes
    IdTargMapConstructorPatternMap
  8. val univLevel: Int
    Definition Classes
    IdTargMapConstructorPatternMap