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 IterFuncPattern
    Definition Classes
    coarse
  • DepFuncIterPtn
  • FuncIterPtn
  • IdIterPtn
  • IterFuncPtn
  • IterFuncTyp
  • RecIterPtn

case class FuncIterPtn[TT <: Term with Subs[TT], V <: Term with Subs[V], T <: Term with Subs[T], D <: Term with Subs[D], O <: Term with Subs[O], C <: Term with Subs[C]](tail: Typ[TT], head: IterFuncPtn[O, C, V] { ... /* 2 definitions in type refinement */ }) extends IterFuncPtn[O, C, Func[TT, V]] with Product with Serializable

Self Type
FuncIterPtn[TT, V, T, D, O, C]
Linear Supertypes
Serializable, Product, Equals, IterFuncPtn[O, C, Func[TT, V]], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FuncIterPtn
  2. Serializable
  3. Product
  4. Equals
  5. IterFuncPtn
  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 FuncIterPtn(tail: Typ[TT], head: IterFuncPtn[O, C, V] { ... /* 2 definitions in type refinement */ })

Type Members

  1. type Cod = C
    Definition Classes
    IterFuncPtn
  2. type DepTargetType = FuncLike[TT, D]

    Note that the target may be a type family, not a type, so this is the actual type of objects.

    Note that the target may be a type family, not a type, so this is the actual type of objects.

    Definition Classes
    FuncIterPtnIterFuncPtn
  3. type Family = Func[TT, V]

    scala type (upper bound) for a member of the family, i.e., sections

    scala type (upper bound) for a member of the family, i.e., sections

    Definition Classes
    IterFuncPtn
  4. type TargetType = Func[TT, T]

    scala type of target for induced functions

    scala type of target for induced functions

    Definition Classes
    FuncIterPtnIterFuncPtn

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 FuncIterPtn[TT, V, T, D, O, C] toany2stringadd[FuncIterPtn[TT, V, T, D, O, C]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (FuncIterPtn[TT, V, T, D, O, C], B)
    Implicit
    This member is added by an implicit conversion from FuncIterPtn[TT, V, T, D, O, C] toArrowAssoc[FuncIterPtn[TT, V, T, D, O, C]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def apply(W: Typ[O]): FuncTyp[TT, V]

    returns the type corresponding to the pattern, such as A -> W, given the (inductive) type W, this is used mainly for constructor patterns, with the W being fixed.

    returns the type corresponding to the pattern, such as A -> W, given the (inductive) type W, this is used mainly for constructor patterns, with the W being fixed.

    Definition Classes
    FuncIterPtnIterFuncPtn
  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 depTarget(xs: Func[O, Typ[Cod]]): (Family) => PiDefn[TT, D]

    dependent target scala type.

    dependent target scala type.

    Definition Classes
    FuncIterPtnIterFuncPtn
  10. def ensuring(cond: (FuncIterPtn[TT, V, T, D, O, C]) => Boolean, msg: => Any): FuncIterPtn[TT, V, T, D, O, C]
    Implicit
    This member is added by an implicit conversion from FuncIterPtn[TT, V, T, D, O, C] toEnsuring[FuncIterPtn[TT, V, T, D, O, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (FuncIterPtn[TT, V, T, D, O, C]) => Boolean): FuncIterPtn[TT, V, T, D, O, C]
    Implicit
    This member is added by an implicit conversion from FuncIterPtn[TT, V, T, D, O, C] toEnsuring[FuncIterPtn[TT, V, T, D, O, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: => Any): FuncIterPtn[TT, V, T, D, O, C]
    Implicit
    This member is added by an implicit conversion from FuncIterPtn[TT, V, T, D, O, C] toEnsuring[FuncIterPtn[TT, V, T, D, O, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): FuncIterPtn[TT, V, T, D, O, C]
    Implicit
    This member is added by an implicit conversion from FuncIterPtn[TT, V, T, D, O, C] toEnsuring[FuncIterPtn[TT, V, T, D, O, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from FuncIterPtn[TT, V, T, D, O, C] toStringFormat[FuncIterPtn[TT, V, T, D, 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. val head: IterFuncPtn[O, C, V] { ... /* 2 definitions in type refinement */ }
  18. val headfibre: (Term) => IterFuncPtn[O, C, V] { ... /* 2 definitions in type refinement */ }
  19. def induced(f: Func[O, Cod]): (Family) => TargetType

    inductively defining the induced function.

    inductively defining the induced function. maps (g : tail --> head(W)) to func : tail --> head(X) given (head(W) --> head(X))

    f

    function from which to induce

    Definition Classes
    FuncIterPtnIterFuncPtn
  20. def inducedDep(f: FuncLike[O, Cod]): (Family) => DepTargetType

    inductively defining the induced function.

    inductively defining the induced function. maps (g : tail --> head(W)) to func : (t : tail) ~> head(Xs(t)) given (head(W) --> (t: tail) ~> head(Xs(t)))

    f

    dependent function from which to induce

    Definition Classes
    FuncIterPtnIterFuncPtn
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def productElementNames: Iterator[String]
    Definition Classes
    Product
  26. def subs(x: Term, y: Term): FuncIterPtn[TT, V, subs.newHead.type.TargetType, subs.newHead.type.DepTargetType, O, C] forSome {val newHead: IterFuncPtn[O, C, (head)#Family]}
    Definition Classes
    FuncIterPtnIterFuncPtn
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. val tail: Typ[TT]
  29. def target(x: Typ[Cod]): FuncTyp[TT, (head)#TargetType]

    target scala type.

    target scala type.

    Definition Classes
    FuncIterPtnIterFuncPtn
  30. val univLevel: Int

    the universe containing the type

    the universe containing the type

    Definition Classes
    FuncIterPtnIterFuncPtn
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. def withCod[CC <: Term with Subs[CC]](w: Typ[O]): FuncIterPtn[TT, V, withCod.newHead.type.TargetType, withCod.newHead.type.DepTargetType, O, CC] forSome {val newHead: IterFuncPtn[O, CC, (head)#Family]}
    Definition Classes
    FuncIterPtnIterFuncPtn

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): (FuncIterPtn[TT, V, T, D, O, C], B)
    Implicit
    This member is added by an implicit conversion from FuncIterPtn[TT, V, T, D, O, C] toArrowAssoc[FuncIterPtn[TT, V, T, D, 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 Serializable

Inherited from Product

Inherited from Equals

Inherited from IterFuncPtn[O, C, Func[TT, V]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromFuncIterPtn[TT, V, T, D, O, C] to any2stringadd[FuncIterPtn[TT, V, T, D, O, C]]

Inherited by implicit conversion StringFormat fromFuncIterPtn[TT, V, T, D, O, C] to StringFormat[FuncIterPtn[TT, V, T, D, O, C]]

Inherited by implicit conversion Ensuring fromFuncIterPtn[TT, V, T, D, O, C] to Ensuring[FuncIterPtn[TT, V, T, D, O, C]]

Inherited by implicit conversion ArrowAssoc fromFuncIterPtn[TT, V, T, D, O, C] to ArrowAssoc[FuncIterPtn[TT, V, T, D, O, C]]

Ungrouped