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 andrewscurtis
    Definition Classes
    provingground
  • package examples
    Definition Classes
    provingground
  • 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 interface
    Definition Classes
    provingground
  • package learning
    Definition Classes
    provingground
  • package library
    Definition Classes
    provingground
  • package scalahott
    Definition Classes
    provingground
  • package scratch
    Definition Classes
    provingground
  • package translation

    Translation primarily using a functorial framework - see Translator$, for natural language processing as well as serialization, formatted output, parsing, interface with formal languages etc.

    Translation primarily using a functorial framework - see Translator$, for natural language processing as well as serialization, formatted output, parsing, interface with formal languages etc.

    Besides the Translator framework and helper typeclasses is Functors, several structures for concrete languages including our implementation of HoTT are in this package.

    Definition Classes
    provingground
  • Base
  • Context
  • FiniteDistribution
  • Frankl
  • HoTT
  • JvmUtils
  • LinearStructure
  • MereProposition
  • PickledWeighted
  • ProbabilityDistribution
  • Subst
  • SubstImplicits
  • TermList
  • TermListImplicits
  • Utils
  • Weighted

trait ProbabilityDistribution[A] extends Any

A probability distribution, from which we can pick values at random (the only abstract method). We can obtain a random variable from this, which is an iterator.

Self Type
ProbabilityDistribution[A]
Linear Supertypes
Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProbabilityDistribution
  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 getClass(): Class[_ <: AnyRef]
    Definition Classes
    Any
  2. abstract def next: A

    the next random value

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 ProbabilityDistribution[A] toany2stringadd[ProbabilityDistribution[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ProbabilityDistribution[A], B)
    Implicit
    This member is added by an implicit conversion from ProbabilityDistribution[A] toArrowAssoc[ProbabilityDistribution[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def <++>(components: => Vector[Weighted[ProbabilityDistribution[A]]]): Mixture[A]

    mix in weighted distributions; the mixed in distributions are called by name, so can depend on this distribution.

  6. def <+>(mixin: => ProbabilityDistribution[A], weight: Double): Mixin[A]

    generates from the mixed in distribution with probability _weight_, otherwise defaults to this distribution; as the mixed in distribution is called by name, it may depend on the present one.

  7. def <+?>(mixin: => ProbabilityDistribution[Option[A]], weight: Double): MixinOpt[A]

    generates from the mixed in optional valued distribution with probability weight, otherwise, or if the optional returns None, defaults to this distribution; the mixed in distribution is call by name, so may depend on this distribution.

  8. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def condMap[B](f: (A) => Option[B]): ProbabilityDistribution[B]
  11. def conditioned(p: (A) => Boolean): ProbabilityDistribution[A]
  12. def ensuring(cond: (ProbabilityDistribution[A]) => Boolean, msg: => Any): ProbabilityDistribution[A]
    Implicit
    This member is added by an implicit conversion from ProbabilityDistribution[A] toEnsuring[ProbabilityDistribution[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (ProbabilityDistribution[A]) => Boolean): ProbabilityDistribution[A]
    Implicit
    This member is added by an implicit conversion from ProbabilityDistribution[A] toEnsuring[ProbabilityDistribution[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: => Any): ProbabilityDistribution[A]
    Implicit
    This member is added by an implicit conversion from ProbabilityDistribution[A] toEnsuring[ProbabilityDistribution[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): ProbabilityDistribution[A]
    Implicit
    This member is added by an implicit conversion from ProbabilityDistribution[A] toEnsuring[ProbabilityDistribution[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def equals(arg0: Any): Boolean
    Definition Classes
    Any
  17. def fibProduct[Q, B](quot: (A) => Q, fibers: (Q) => ProbabilityDistribution[B]): FiberProduct[A, Q, B]
  18. def findFut(p: (A) => Boolean, maxloops: Long): Future[Option[A]]

    Find element satisfying predicate, runs concurrently, returning future

  19. def flatMap[B](f: (A) => ProbabilityDistribution[B]): ProbabilityDistribution[B]
  20. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ProbabilityDistribution[A] toStringFormat[ProbabilityDistribution[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. def hashCode(): Int
    Definition Classes
    Any
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def map[B](f: (A) => B): ProbabilityDistribution[B]
  24. def product[B](that: ProbabilityDistribution[B]): Product[A, B]
  25. def randomVariable: Iterator[A]
  26. def toString(): String
    Definition Classes
    Any

Deprecated Value Members

  1. def [B](y: B): (ProbabilityDistribution[A], B)
    Implicit
    This member is added by an implicit conversion from ProbabilityDistribution[A] toArrowAssoc[ProbabilityDistribution[A]] 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 fromProbabilityDistribution[A] to any2stringadd[ProbabilityDistribution[A]]

Inherited by implicit conversion StringFormat fromProbabilityDistribution[A] to StringFormat[ProbabilityDistribution[A]]

Inherited by implicit conversion Ensuring fromProbabilityDistribution[A] to Ensuring[ProbabilityDistribution[A]]

Inherited by implicit conversion ArrowAssoc fromProbabilityDistribution[A] to ArrowAssoc[ProbabilityDistribution[A]]

Ungrouped