object SessionCommand
- Source
- Session.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SessionCommand
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class Ask(input: SExpression) extends SessionCommand[SExpression] with Product with Serializable
Submits an SExpression and receives one in return.
- case class Assert(formula: Formula) extends SessionCommand[Unit] with Product with Serializable
Asserts a formula.
- case class AssertLabelled(formula: Formula, label: String) extends SessionCommand[Unit] with Product with Serializable
Asserts a formula with a label.
- case class DeclareFun(fun: Const) extends SessionCommand[Unit] with Product with Serializable
Declares a function.
- case class DeclareSort(sort: TBase) extends SessionCommand[Unit] with Product with Serializable
Declares a sort.
- case class SetLogic(logic: String) extends SessionCommand[Unit] with Product with Serializable
Sets the logic to be used for the session.
- case class SetOption(option: String, args: List[String]) extends SessionCommand[Unit] with Product with Serializable
Sets an option to a value.
- case class Tell(input: SExpression) extends SessionCommand[Unit] with Product with Serializable
Submits an SExpression without a return.
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])
- case object CheckSat extends SessionCommand[Either[SExpression, Boolean]] with Product with Serializable
Checks whether the current set of declarations and assertions is satisfiable.
- case object Pop extends SessionCommand[Unit] with Product with Serializable
Pops the stack, eliminating all assertions and declarations since the last push.
- case object Push extends SessionCommand[Unit] with Product with Serializable
Pushes the current assertions and declarations on the stack.
This is the API documentation for GAPT.
The main package is gapt.