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
  • object FmlyPtn
    Definition Classes
    coarse
  • DepFuncFmlyPtn
  • FuncFmlyPtn
  • IdFmlyPtn
  • RecFmlyPtn

trait RecFmlyPtn[TT <: Term with Subs[TT], FV <: Term with Subs[FV], F <: FuncLike[TT, FV] with Subs[F], S <: Term with Subs[S], O <: Term with Subs[O], C <: Term with Subs[C]] extends FmlyPtn[O, C, F]

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

    type of total index

    Definition Classes
    FmlyPtn
  2. type Cod = C
    Definition Classes
    FmlyPtn
  3. type FamilyType = F

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

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

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

    Type of Curried function to X.

    Type of Curried function to X.

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

    Type of curried function to typ[X]

    Type of curried function to typ[X]

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

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

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

    Definition Classes
    FmlyPtn

Abstract Value Members

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

    the universe containing the type

    the universe containing the type

    Definition Classes
    FmlyPtn
  22. abstract def value(x: Total): O

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

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

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

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 RecFmlyPtn[TT, FV, F, S, O, C] toany2stringadd[RecFmlyPtn[TT, FV, F, S, O, C]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (RecFmlyPtn[TT, FV, F, S, O, C], B)
    Implicit
    This member is added by an implicit conversion from RecFmlyPtn[TT, FV, F, S, O, C] toArrowAssoc[RecFmlyPtn[TT, FV, F, S, O, C]] 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]]
    Definition Classes
    FmlyPtn
  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: (RecFmlyPtn[TT, FV, F, S, O, C]) => Boolean, msg: => Any): RecFmlyPtn[TT, FV, F, S, O, C]
    Implicit
    This member is added by an implicit conversion from RecFmlyPtn[TT, FV, F, S, O, C] toEnsuring[RecFmlyPtn[TT, FV, F, S, O, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (RecFmlyPtn[TT, FV, F, S, O, C]) => Boolean): RecFmlyPtn[TT, FV, F, S, O, C]
    Implicit
    This member is added by an implicit conversion from RecFmlyPtn[TT, FV, F, S, O, C] toEnsuring[RecFmlyPtn[TT, FV, F, S, O, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: => Any): RecFmlyPtn[TT, FV, F, S, O, C]
    Implicit
    This member is added by an implicit conversion from RecFmlyPtn[TT, FV, F, S, O, C] toEnsuring[RecFmlyPtn[TT, FV, F, S, O, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): RecFmlyPtn[TT, FV, F, S, O, C]
    Implicit
    This member is added by an implicit conversion from RecFmlyPtn[TT, FV, F, S, O, C] toEnsuring[RecFmlyPtn[TT, FV, F, S, O, C]] 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 RecFmlyPtn[TT, FV, F, S, O, C] toStringFormat[RecFmlyPtn[TT, FV, F, S, O, C]] 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 */ }
    Definition Classes
    FmlyPtn
  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]]
    Definition Classes
    FmlyPtn

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): (RecFmlyPtn[TT, FV, F, S, O, C], B)
    Implicit
    This member is added by an implicit conversion from RecFmlyPtn[TT, FV, F, S, O, C] toArrowAssoc[RecFmlyPtn[TT, FV, F, S, O, C]] 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 FmlyPtn[O, C, F]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromRecFmlyPtn[TT, FV, F, S, O, C] to any2stringadd[RecFmlyPtn[TT, FV, F, S, O, C]]

Inherited by implicit conversion StringFormat fromRecFmlyPtn[TT, FV, F, S, O, C] to StringFormat[RecFmlyPtn[TT, FV, F, S, O, C]]

Inherited by implicit conversion Ensuring fromRecFmlyPtn[TT, FV, F, S, O, C] to Ensuring[RecFmlyPtn[TT, FV, F, S, O, C]]

Inherited by implicit conversion ArrowAssoc fromRecFmlyPtn[TT, FV, F, S, O, C] to ArrowAssoc[RecFmlyPtn[TT, FV, F, S, O, C]]

Ungrouped