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
  • package coarse

    an earlier implementation of induction, without clean separation of codomain scala types; use induction instead

    an earlier implementation of induction, without clean separation of codomain scala types; use induction instead

    Definition Classes
    induction
  • BaseConstructorTypes
  • Constructor
  • ConstructorDefn
  • ConstructorPattern
  • ConstructorSeq
  • ConstructorTyp
  • Curry
  • FmlyPtn
  • Implicits
  • IndexedConstructorPatterns
  • InductiveTyp
  • InductiveTypDefinition
  • IterFuncPattern

sealed trait FmlyPtn[O <: Term with Subs[O], C <: Term with Subs[C], F <: Term with Subs[F]] extends AnyRef

A pattern for families, e.g. of inductive types to be defined for instance A -> B -> W, where W is the type to be defined; ends with the type with members.

given a codomain C, or a family of codomains, we can lift functions W -> C to functions on families.

O

scala type of objects of W, i.e., members of the family.

C

scala type of the codomain, needed to deduce types for induced functions. This is used in more than one way, which perhaps should be separated: for constructor types and for inductive families. Hence we need two kinds of induced functions, e.g., (A -> B -> W) -> (A -> B -> X) and (A -> B -> W -> X).

F

scala type of sections, e.g. A -> B -> W

Self Type
FmlyPtn[O, C, F]
Linear Supertypes
AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FmlyPtn
  2. AnyRef
  3. 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

Type Members

  1. abstract type ArgType <: Term with Subs[ArgType]

    type of total index

  2. type Cod = C
  3. type FamilyType = F

    type of W, i.e., sections to a universe.

  4. abstract type IterDepFunc <: Term with Subs[IterDepFunc]
  5. abstract type IterFunc <: Term with Subs[IterFunc]

    Type of Curried function to X.

  6. abstract type IterTypFunc <: Term with Subs[IterTypFunc]

    Type of curried function to typ[X]

  7. abstract type Total <: Term with Subs[Total]

    type of the total space, i.e., all terms in some W.

Abstract Value Members

  1. abstract def argOpt(l: List[Term]): Option[ArgType]
  2. abstract def contractType(w: FamilyType)(arg: ArgType): Typ[O]
  3. abstract def curry(f: Func[Total, Cod]): IterFunc
  4. abstract def curryTyp(w: Func[Total, Typ[Cod]]): IterTypFunc
  5. abstract def depCurry(f: FuncLike[Total, Cod]): IterDepFunc
  6. abstract def depFill(g: IterDepFunc)(arg: ArgType): FuncLike[O, C]
  7. abstract def depTotalDomain(g: IterDepFunc): Typ[Total]
  8. abstract def depUncurry(g: IterDepFunc): FuncLike[Total, Cod]
  9. abstract def domTotal(w: FamilyType): Typ[Total]
  10. abstract def fill(g: IterFunc)(arg: ArgType): Func[O, C]
  11. abstract def incl(term: O, arg: ArgType, w: FamilyType): Total
  12. abstract def iterDepFuncTyp(w: FamilyType, xs: IterTypFunc): Typ[IterDepFunc]
  13. abstract def iterFuncTyp(w: FamilyType, x: Typ[Cod]): Typ[IterFunc]
  14. abstract def subs(x: Term, y: Term): FmlyPtn[O, C, F]
  15. abstract def totalDomain(g: IterFunc): Typ[Total]
  16. abstract def totalTypDomain(g: IterTypFunc): Typ[Total]
  17. abstract def uncurry(g: IterFunc): Func[Total, Cod]
  18. abstract def uncurryTyp(g: IterTypFunc): Func[Total, Typ[Cod]]
  19. abstract val univLevel: Int

    the universe containing the type

  20. abstract def value(x: Total): O

    project an element of the total type to its value, i.e., drop arguments

  21. abstract def withCod[CC <: Term with Subs[CC]](w: Typ[O]): FmlyPtn[O, CC, F]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from FmlyPtn[O, C, F] toany2stringadd[FmlyPtn[O, C, F]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (FmlyPtn[O, C, F], B)
    Implicit
    This member is added by an implicit conversion from FmlyPtn[O, C, F] toArrowAssoc[FmlyPtn[O, C, F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def ->:[TT <: Term with Subs[TT]](tail: Typ[TT]): FmlyPtn[O, C, Func[TT, F]]
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def ensuring(cond: (FmlyPtn[O, C, F]) => Boolean, msg: => Any): FmlyPtn[O, C, F]
    Implicit
    This member is added by an implicit conversion from FmlyPtn[O, C, F] toEnsuring[FmlyPtn[O, C, F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (FmlyPtn[O, C, F]) => Boolean): FmlyPtn[O, C, F]
    Implicit
    This member is added by an implicit conversion from FmlyPtn[O, C, F] toEnsuring[FmlyPtn[O, C, F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: => Any): FmlyPtn[O, C, F]
    Implicit
    This member is added by an implicit conversion from FmlyPtn[O, C, F] toEnsuring[FmlyPtn[O, C, F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): FmlyPtn[O, C, F]
    Implicit
    This member is added by an implicit conversion from FmlyPtn[O, C, F] toEnsuring[FmlyPtn[O, C, F]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from FmlyPtn[O, C, F] toStringFormat[FmlyPtn[O, C, F]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. val me: FmlyPtn[O, C, F] { ... /* 5 definitions in type refinement */ }
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. def ~>:[TT <: Term with Subs[TT]](tailVar: TT): FmlyPtn[O, C, FuncLike[TT, F]]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def [B](y: B): (FmlyPtn[O, C, F], B)
    Implicit
    This member is added by an implicit conversion from FmlyPtn[O, C, F] toArrowAssoc[FmlyPtn[O, C, F]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromFmlyPtn[O, C, F] to any2stringadd[FmlyPtn[O, C, F]]

Inherited by implicit conversion StringFormat fromFmlyPtn[O, C, F] to StringFormat[FmlyPtn[O, C, F]]

Inherited by implicit conversion Ensuring fromFmlyPtn[O, C, F] to Ensuring[FmlyPtn[O, C, F]]

Inherited by implicit conversion ArrowAssoc fromFmlyPtn[O, C, F] to ArrowAssoc[FmlyPtn[O, C, F]]

Ungrouped