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 learning
    Definition Classes
    provingground
  • object Collections
    Definition Classes
    learning
    Annotations
    @deprecated
    Deprecated

    (Since version 17/5/2017) use spire

  • ApproxSeq
  • ArrayMap
  • InfSeq
  • InnerProduct
  • LabelledArray
  • LabelledVector
  • Shift

trait LabelledArray[L, T] extends Any

Linear Supertypes
Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LabelledArray
  2. 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

Abstract Value Members

  1. abstract def get(label: L): Option[T]
  2. abstract def getClass(): Class[_ <: AnyRef]
    Definition Classes
    Any
  3. abstract def support: Iterable[L]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from LabelledArray[L, T] toany2stringadd[LabelledArray[L, T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (LabelledArray[L, T], B)
    Implicit
    This member is added by an implicit conversion from LabelledArray[L, T] toArrowAssoc[LabelledArray[L, T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  6. def apply(label: L)(implicit zero: T): T
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def ensuring(cond: (LabelledArray[L, T]) => Boolean, msg: => Any): LabelledArray[L, T]
    Implicit
    This member is added by an implicit conversion from LabelledArray[L, T] toEnsuring[LabelledArray[L, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (LabelledArray[L, T]) => Boolean): LabelledArray[L, T]
    Implicit
    This member is added by an implicit conversion from LabelledArray[L, T] toEnsuring[LabelledArray[L, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: => Any): LabelledArray[L, T]
    Implicit
    This member is added by an implicit conversion from LabelledArray[L, T] toEnsuring[LabelledArray[L, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): LabelledArray[L, T]
    Implicit
    This member is added by an implicit conversion from LabelledArray[L, T] toEnsuring[LabelledArray[L, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def equals(arg0: Any): Boolean
    Definition Classes
    Any
  13. def foreach[U](f: (T) => U): Unit
  14. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from LabelledArray[L, T] toStringFormat[LabelledArray[L, T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  15. def hashCode(): Int
    Definition Classes
    Any
  16. def incl(label: L)(arg: T): ArrayMap[L, T]
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def proj(label: L)(arr: ArrayMap[L, T])(implicit zero: T): T
  19. def toString(): String
    Definition Classes
    Any

Deprecated Value Members

  1. def [B](y: B): (LabelledArray[L, T], B)
    Implicit
    This member is added by an implicit conversion from LabelledArray[L, T] toArrowAssoc[LabelledArray[L, T]] 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 Any

Inherited by implicit conversion any2stringadd fromLabelledArray[L, T] to any2stringadd[LabelledArray[L, T]]

Inherited by implicit conversion StringFormat fromLabelledArray[L, T] to StringFormat[LabelledArray[L, T]]

Inherited by implicit conversion Ensuring fromLabelledArray[L, T] to Ensuring[LabelledArray[L, T]]

Inherited by implicit conversion ArrowAssoc fromLabelledArray[L, T] to ArrowAssoc[LabelledArray[L, T]]

Ungrouped