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
- Protected
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[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- 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() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
This is the API documentation for GAPT.
The main package is gapt.