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 LabelledVector[L] extends LabelledArray[L, Double]

Linear Supertypes
LabelledArray[L, Double], Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LabelledVector
  2. LabelledArray
  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

Abstract Value Members

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

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 LabelledVector[L] toany2stringadd[LabelledVector[L]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (LabelledVector[L], B)
    Implicit
    This member is added by an implicit conversion from LabelledVector[L] toArrowAssoc[LabelledVector[L]] 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: Double): Double
    Definition Classes
    LabelledArray
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def dot(that: LabelledVector[L]): Double
  9. def ensuring(cond: (LabelledVector[L]) => Boolean, msg: => Any): LabelledVector[L]
    Implicit
    This member is added by an implicit conversion from LabelledVector[L] toEnsuring[LabelledVector[L]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (LabelledVector[L]) => Boolean): LabelledVector[L]
    Implicit
    This member is added by an implicit conversion from LabelledVector[L] toEnsuring[LabelledVector[L]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: => Any): LabelledVector[L]
    Implicit
    This member is added by an implicit conversion from LabelledVector[L] toEnsuring[LabelledVector[L]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): LabelledVector[L]
    Implicit
    This member is added by an implicit conversion from LabelledVector[L] toEnsuring[LabelledVector[L]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def equals(arg0: Any): Boolean
    Definition Classes
    Any
  14. def foreach[U](f: (Double) => U): Unit
    Definition Classes
    LabelledArray
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from LabelledVector[L] toStringFormat[LabelledVector[L]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. def hashCode(): Int
    Definition Classes
    Any
  17. def incl(label: L)(arg: Double): ArrayMap[L, Double]
    Definition Classes
    LabelledArray
  18. def innerProduct(that: LabelledVector[L]): Double
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def proj(label: L)(arr: ArrayMap[L, Double])(implicit zero: Double): Double
    Definition Classes
    LabelledArray
  21. def sum: Double
  22. def toString(): String
    Definition Classes
    Any

Deprecated Value Members

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

Inherited from Any

Inherited by implicit conversion any2stringadd fromLabelledVector[L] to any2stringadd[LabelledVector[L]]

Inherited by implicit conversion StringFormat fromLabelledVector[L] to StringFormat[LabelledVector[L]]

Inherited by implicit conversion Ensuring fromLabelledVector[L] to Ensuring[LabelledVector[L]]

Inherited by implicit conversion ArrowAssoc fromLabelledVector[L] to ArrowAssoc[LabelledVector[L]]

Ungrouped