Tactic

gapt.proofs.gaptic.Tactic
See theTactic companion object
trait Tactic[+T]

Attributes

Companion
object
Source
core.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
Self type
Tactic[T]

Members list

Value members

Abstract methods

def apply(proofState: ProofState): Either[TacticFailure, (T, ProofState)]

Attributes

Source
core.scala

Concrete methods

def aka(newName: => String): Tactic[T]

Attributes

Source
core.scala
def andThen[S](t2: => Tactic[S]): Tactic[S]

Attributes

Source
core.scala
def cut(errorMessage: String): Tactic[T]

Attributes

Source
core.scala
def flatMap[S](f: T => Tactic[S])(implicit file: File, line: Line): Tactic[S]

Attributes

Source
core.scala
def focused: Tactic[T]

Attributes

Source
core.scala
def map[S](f: T => S)(implicit file: File, line: Line): Tactic[S]

Attributes

Source
core.scala
def onAll[S](t2: => Tactic[S]): Tactic[Unit]

Attributes

Source
core.scala

Attributes

Source
core.scala

Attributes

Source
core.scala
def orElse[S >: T](t2: => Tactic[S]): Tactic[S]

Returns result of first tactical, if there is any, else it returns the result of the second tactical, with the possibility of no result from either.

Returns result of first tactical, if there is any, else it returns the result of the second tactical, with the possibility of no result from either.

Attributes

Source
core.scala
def quiet: Tactic[T]

Attributes

Source
core.scala
def quietOnly(loggers: Logger*): Tactic[T]

Attributes

Source
core.scala
def verbose: Tactic[T]

Attributes

Source
core.scala
def verboseOnly(loggers: Logger*): Tactic[T]

Attributes

Source
core.scala