object Runners
Contains various functions for interpreting a value of type Session.
A "runner" contains a natural transformation from SessionCommand to Id; i.e. a function that can transform any SessionCommand[A] to an Id[A] (= A).
Given such a transformation comp: SessionCommand ~> Id, you can use it to interpret a session program p via p.foldMap(comp).
- Source
- Session.scala
- Alphabetic
- By Inheritance
- Runners
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
BenchmarkRecorder extends SMTLibSessionRunner
An SMTLibSessionRunner that writes all commands sequentially to a string.
An SMTLibSessionRunner that writes all commands sequentially to a string.
Its
tell
simply writes to the string, while itsask
writes to the string and receives dummy replies. -
class
ExternalSMTLibSessionRunner extends SMTLibSessionRunner
An SMTLibSessionRunner that actually communicates with an external program.
-
abstract
class
SMTLibSessionRunner extends SessionRunner
A runner that interprets a Session by communicating with an SMTLib process.
A runner that interprets a Session by communicating with an SMTLib process. The process is left abstract -- it might not be an external program.
Subclasses must implement the tell and ask functions.
-
abstract
class
SessionRunner extends AnyRef
Runs a session.
Runs a session. What that means, exactly, is up to the concrete implementation.
-
class
StackSessionRunner extends SessionRunner
A runner that interprets a session by manipulating a stack of sets of formulas.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
This is the API documentation for GAPT.
The main package is at.logic.gapt.