Packages

object ProverTasks

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProverTasks
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def branchedGatherTask[X, Y](tsk: Task[X], results: (Int) => (X) => Task[Y], combine: (Y, Y) => Y, spawn: (Int) => (X) => Task[Vector[Task[X]]], depth: Int = 0): Task[Y]

    bread-first accumulation of results; a typical example is interesting proofs, with X finite-distributions of terms.

    bread-first accumulation of results; a typical example is interesting proofs, with X finite-distributions of terms. each element of X can spawn a vector of elements in which we also search. Everything is wrapped in tasks.

    tsk

    the initial element for the search

    results

    the result, depending on an element of X - also the depth, but this is used mainly for tracking.

    spawn

    new vectors in X spawned by an element in X, depeneding on the depth.

    depth

    the depth of the current recursive step.

  6. def breadthFirstTask[X, Y](tv: Task[Vector[Task[X]]], p: (X) => Option[Y], spawn: (Int) => (X) => Task[Vector[Task[X]]], depth: Int = 0): Task[Option[Y]]

    bread-first search for an element in X satisying a predicate-map p; each element of X can spawn a vector of elements in which we also search.

    bread-first search for an element in X satisying a predicate-map p; each element of X can spawn a vector of elements in which we also search. Everything is wrapped in tasks.

    tv

    the initial vector in which we search

    p

    the predicate to be satisfied + map; actually an optional map.

    spawn

    new vectors in X spawned by an element in X, depeneding on the depth.

    depth

    the depth of the current recursive step.

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def h[A](fd: FiniteDistribution[A]): Double
  12. def h0(p: Double, q: Double): Double

    An entropy measure for parsimonious generation of terms inhabiting types.

  13. def hExp(p: Double, q: Double, scale: Double): Double

    Exponent of an entropy measure for parsimonious generation of terms inhabiting types; low values correspond to important terms, with the scale increasing sensitivity.

  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def inTaskVecTask[X, Y](tv: Task[Vector[Task[X]]], p: (X) => Option[Y]): Task[Option[Y]]

    Looks for an element satisfying a predicate in a vector of tasks.

    Looks for an element satisfying a predicate in a vector of tasks.

    tv

    task giving a vector of tasks giving elements of X.

    p

    an optional map, ie predicate+map

    returns

    task giving optional element satisying the predicate.

  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def kl[A](p: FiniteDistribution[A], q: FiniteDistribution[A]): Double
  18. def minOn[A](fd: FiniteDistribution[A], minValue: Double, supp: Set[A]): FiniteDistribution[A]
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def newNeighbours[A](fd: FiniteDistribution[A], pert: Vector[A], epsilon: Double): Vector[FiniteDistribution[A]]
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def pfMatch(ev: (FiniteDistribution[Term]) => Task[FiniteDistribution[Term]], typs: Task[FiniteDistribution[Typ[Term]]], wt: Double = 1.0)(gen: FiniteDistribution[Term]): Task[Double]
  24. def pfMatchDiff(ev: (FiniteDistribution[Term]) => Task[FiniteDistribution[Term]], typs: Task[FiniteDistribution[Typ[Term]]], cutoff: Double, wt: Double = 1.0)(gen0: FiniteDistribution[Term], gen1: FiniteDistribution[Term]): Task[Double]
  25. def prsmEntMemoTask(termsTask: Task[FiniteDistribution[Term]], typsTask: Task[FiniteDistribution[Typ[Term]]], scale: Double, vars: Vector[Term] = Vector()): Task[(Vector[(Term, Double)], Set[Term], Set[Typ[Term]])]

    task to find proofs that are useful based on parsimony, i.e., reducing relative entropy of the final result with a cost for the increase in entropy of the initial distribution.

    task to find proofs that are useful based on parsimony, i.e., reducing relative entropy of the final result with a cost for the increase in entropy of the initial distribution. Also return terms and types

    termsTask

    task for evolution of terms.

    typsTask

    task for evolution of types.

    returns

    task for proofs with, and sorted by, parsimonious entropies.

  26. def prsmEntTask(termsTask: Task[FiniteDistribution[Term]], typsTask: Task[FiniteDistribution[Typ[Term]]], scale: Double, vars: Vector[Term] = Vector()): Task[Vector[(Term, Double)]]

    task to find proofs that are useful based on parsimony, i.e., reducing relative entropy of the final result with a cost for the increase in entropy of the initial distribution.

    task to find proofs that are useful based on parsimony, i.e., reducing relative entropy of the final result with a cost for the increase in entropy of the initial distribution.

    termsTask

    task for evolution of terms.

    typsTask

    task for evolution of types.

    returns

    task for proofs with, and sorted by, parsimonious entropies.

  27. def quasiGradFlowTask[A](base: A, neighMap: (A) => Vector[A], derTask: (A, A) => Task[Double], halt: (A, A) => Boolean)(implicit ls: VectorSpace[A, Double]): Task[A]
  28. def quasiGradShift[A](base: A, neighbours: Vector[A], derTask: (A, A) => Task[Double])(implicit ls: VectorSpace[A, Double]): Task[A]
  29. def selfNeighbours[A](fd: FiniteDistribution[A], epsilon: Double): Vector[FiniteDistribution[A]]
  30. def stabHalt(x: FiniteDistribution[Term], y: FiniteDistribution[Term], level: Double): Boolean
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped