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 ConstructorPattern
    Definition Classes
    coarse
  • CnstDepFuncPtn
  • CnstFncPtn
  • DepFuncPtn
  • FuncPtn
  • IdTarg
  • IdW
  • RecursiveConstructorPattern

case class CnstFncPtn[T <: Term with Subs[T], Cod <: Term with Subs[Cod], HC <: Term with Subs[HC], H <: Term with Subs[H]](tail: Typ[T], head: ConstructorPattern[Cod, HC, H]) extends RecursiveConstructorPattern[Cod, T, HC, Func[T, HC], H] with Product with Serializable

Extending a poly-pattern by a constant type, i.e., not depending on W.

Self Type
CnstFncPtn[T, Cod, HC, H]
Linear Supertypes
Serializable, Product, Equals, RecursiveConstructorPattern[Cod, T, HC, Func[T, HC], H], ConstructorPattern[Cod, Func[T, HC], H], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CnstFncPtn
  2. Serializable
  3. Product
  4. Equals
  5. RecursiveConstructorPattern
  6. ConstructorPattern
  7. AnyRef
  8. 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 CnstFncPtn(tail: Typ[T], head: ConstructorPattern[Cod, HC, H])

Type Members

  1. type ArgType = T

    scala type of argument to constructor A -> ...

    scala type of argument to constructor A -> ... (or A ~> ...)

    Definition Classes
    RecursiveConstructorPattern
  2. type ConstructorType = Func[T, HC]
    Definition Classes
    ConstructorPattern
  3. type DomainType = H
    Definition Classes
    ConstructorPattern
  4. type HeadInducDataType = ConstructorPattern.InducDataType
  5. type HeadRecDataType = ConstructorPattern.RecDataType

    (scala) type of recursive data for head.

    (scala) type of recursive data for head.

    Definition Classes
    CnstFncPtnRecursiveConstructorPattern
  6. type HeadType = HC

    scala type of the head T for constructor A -> T for Pi-Types, the head may have varying HoTT type but must have fixed scala type.

    scala type of the head T for constructor A -> T for Pi-Types, the head may have varying HoTT type but must have fixed scala type.

    Definition Classes
    RecursiveConstructorPattern
  7. type InducDataType = FuncLike[T, ConstructorPattern.InducDataType]

    (scala) type of data for recursion corresponding to the single constructor

    (scala) type of data for recursion corresponding to the single constructor

    Definition Classes
    CnstFncPtnConstructorPattern
  8. type RecDataType = Func[T, ConstructorPattern.RecDataType]

    (scala) type of data for recursion corresponding to the single constructor

    (scala) type of data for recursion corresponding to the single constructor

    Definition Classes
    CnstFncPtnConstructorPattern

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 CnstFncPtn[T, Cod, HC, H] toany2stringadd[CnstFncPtn[T, Cod, HC, H]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def -->:(that: IdW[_]): FuncPtn[Cod, H, Func[T, HC], H]
    Definition Classes
    ConstructorPattern
  5. def -->:[F <: Term with Subs[F]](that: IterFuncPtn[H, Cod, F]): FuncPtn[Cod, F, Func[T, HC], H]

    function pattern.

    function pattern.

    Definition Classes
    ConstructorPattern
  6. def ->[B](y: B): (CnstFncPtn[T, Cod, HC, H], B)
    Implicit
    This member is added by an implicit conversion from CnstFncPtn[T, Cod, HC, H] toArrowAssoc[CnstFncPtn[T, Cod, HC, H]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. def ->:[T <: Term with Subs[T]](tail: Typ[T]): CnstFncPtn[T, Cod, Func[T, HC], H]
    Definition Classes
    ConstructorPattern
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. val _head: ConstructorPattern[Cod, HC, H] { ... /* 2 definitions in type refinement */ }
  10. def apply(W: Typ[H]): FuncTyp[T, ConstructorType]

    returns HoTT type corresponding to the pattern given the (inductive) type W (to be the head).

    returns HoTT type corresponding to the pattern given the (inductive) type W (to be the head).

    Definition Classes
    CnstFncPtnConstructorPattern
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  13. def cons(tp: => Typ[H]): Constructor.ConstructorType
    Definition Classes
    ConstructorPattern
  14. def cons(tp: => Typ[H], name: AnySym): Func[T, HC]
    Definition Classes
    ConstructorPattern
  15. def constructor(tp: => Typ[H], name: AnySym): ConstructorDefn[ConstructorType, Cod, H]

    constructor for this pattern given inductive type and name.

    constructor for this pattern given inductive type and name.

    Definition Classes
    ConstructorPattern
  16. def ensuring(cond: (CnstFncPtn[T, Cod, HC, H]) => Boolean, msg: => Any): CnstFncPtn[T, Cod, HC, H]
    Implicit
    This member is added by an implicit conversion from CnstFncPtn[T, Cod, HC, H] toEnsuring[CnstFncPtn[T, Cod, HC, H]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (CnstFncPtn[T, Cod, HC, H]) => Boolean): CnstFncPtn[T, Cod, HC, H]
    Implicit
    This member is added by an implicit conversion from CnstFncPtn[T, Cod, HC, H] toEnsuring[CnstFncPtn[T, Cod, HC, H]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: => Any): CnstFncPtn[T, Cod, HC, H]
    Implicit
    This member is added by an implicit conversion from CnstFncPtn[T, Cod, HC, H] toEnsuring[CnstFncPtn[T, Cod, HC, H]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): CnstFncPtn[T, Cod, HC, H]
    Implicit
    This member is added by an implicit conversion from CnstFncPtn[T, Cod, HC, H] toEnsuring[CnstFncPtn[T, Cod, HC, H]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from CnstFncPtn[T, Cod, HC, H] toStringFormat[CnstFncPtn[T, Cod, HC, H]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. val head: ConstructorPattern[Cod, HC, H]
  24. def headData(data: RecDataType, arg: ArgType, f: => Func[H, Cod]): HeadRecDataType

    returns data for recursion to be passed on to the head given an argument (when matching with the constructor).

    returns data for recursion to be passed on to the head given an argument (when matching with the constructor).

    Definition Classes
    CnstFncPtnRecursiveConstructorPattern
  25. def headInducData(data: InducDataType, arg: ArgType, f: => FuncLike[H, Cod]): HeadInducDataType
  26. val headfibre: (ArgType) => _head

    The head pattern, constant T for A -> T and T(a) for A ~> T(a)

    The head pattern, constant T for A -> T and T(a) for A ~> T(a)

    Definition Classes
    CnstFncPtnRecursiveConstructorPattern
  27. def inducDataTyp(w: Typ[H], xs: Func[H, Typ[Cod]])(cons: ConstructorType): 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
    CnstFncPtnConstructorPattern
  28. def inducDefCase(cons: ConstructorType, data: InducDataType, f: => FuncLike[H, Cod]): (H) => Option[Cod]

    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
    RecursiveConstructorPatternConstructorPattern
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. def newconstructor(tp: Typ[H]): Constructor[Cod, H]

    constructor for this pattern given inductive type, with a name symbol generated.

    constructor for this pattern given inductive type, with a name symbol generated.

    Definition Classes
    ConstructorPattern
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. def productElementNames: Iterator[String]
    Definition Classes
    Product
  35. def recDataTyp(w: Typ[H], x: Typ[Cod]): FuncTyp[T, ConstructorPattern.RecDataType]

    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
    CnstFncPtnConstructorPattern
  36. def recDefCase(cons: ConstructorType, data: RecDataType, f: => Func[H, Cod]): (H) => Option[Cod]

    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
    RecursiveConstructorPatternConstructorPattern
  37. def subs(x: Term, y: Term): CnstFncPtn[T, Cod, HC, H]
    Definition Classes
    CnstFncPtnConstructorPattern
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. val tail: Typ[T]
  40. val univLevel: Int
    Definition Classes
    CnstFncPtnConstructorPattern
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  43. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. def withCod[CC <: Term with Subs[CC]](w: Typ[H]): CnstFncPtn[T, CC, HC, H]

    changes codomain and propagates changes to other types.

    changes codomain and propagates changes to other types.

    Definition Classes
    CnstFncPtnConstructorPattern
  45. def ~>:[T <: Term with Subs[T]](tailVar: T): CnstDepFuncPtn[T, (<refinement>.this)#RecDataType, (<refinement>.this)#InducDataType, Cod, Func[T, HC], H]
    Definition Classes
    ConstructorPattern

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): (CnstFncPtn[T, Cod, HC, H], B)
    Implicit
    This member is added by an implicit conversion from CnstFncPtn[T, Cod, HC, H] toArrowAssoc[CnstFncPtn[T, Cod, HC, H]] 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 Serializable

Inherited from Product

Inherited from Equals

Inherited from RecursiveConstructorPattern[Cod, T, HC, Func[T, HC], H]

Inherited from ConstructorPattern[Cod, Func[T, HC], H]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromCnstFncPtn[T, Cod, HC, H] to any2stringadd[CnstFncPtn[T, Cod, HC, H]]

Inherited by implicit conversion StringFormat fromCnstFncPtn[T, Cod, HC, H] to StringFormat[CnstFncPtn[T, Cod, HC, H]]

Inherited by implicit conversion Ensuring fromCnstFncPtn[T, Cod, HC, H] to Ensuring[CnstFncPtn[T, Cod, HC, H]]

Inherited by implicit conversion ArrowAssoc fromCnstFncPtn[T, Cod, HC, H] to ArrowAssoc[CnstFncPtn[T, Cod, HC, H]]

Ungrouped