Packages

object GlobalProver

Annotations
@deprecated
Deprecated

(Since version now) use composite prover

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

Type Members

  1. case class AllOf[R](provers: Vector[GlobalProver[R]], combine: (Vector[R]) => R) extends GlobalProver[R] with Product with Serializable
  2. case class AnyOf[R](provers: Vector[Xor[R]]) extends GlobalProver[Either[R, R]] with Product with Serializable
  3. case class BothOf[R](first: GlobalProver[R], second: GlobalProver[R], combine: (R, R) => R) extends GlobalProver[R] with Product with Serializable
  4. case class Elementary[R](lp: LocalProverStep, getResult: (LocalProverStep) => Task[R]) extends GlobalProver[R] with Product with Serializable
  5. case class OneOf[R](first: GlobalProver[R], second: GlobalProver[R], firstNegated: GlobalProver[R], secondNegated: GlobalProver[R], isSuccess: (R) => Boolean) extends GlobalProver[R] with Product with Serializable
  6. type Result = (TermState, Set[EquationNode])
  7. case class SomeOf[R](provers: Vector[GlobalProver[R]], isSuccess: (R) => Boolean) extends GlobalProver[Vector[R]] with Product with Serializable
  8. case class Xor[R](first: GlobalProver[R], second: GlobalProver[R], isSuccess: (R) => Boolean) extends GlobalProver[Either[R, R]] with Product with Serializable

Value Members

  1. def chomper(lp: LocalProver, typ: Typ[Term], goalWeight: Double): Task[GlobalProver[Either[Result, Result]]]
  2. def sequenceResult[R](provers: Vector[Xor[R]]): Task[Option[R]]