trait IncrementalProvingSession extends AnyRef
Interactive interface to an interactive prover like an SMT solver.
The methods on this trait are chosen for similarity to the SMT-LIB standard. You can imagine that an instance of this trait is a single SMT solver processing commands interactively.
- Source
- provers.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- IncrementalProvingSession
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
-
abstract
def
assert(formula: HOLFormula): Unit
Adds an assertion.
-
abstract
def
checkSat(): Boolean
Checks whether the currently asserted formulas are satisfiable.
-
abstract
def
close(): Unit
Closes the process.
-
abstract
def
declareSymbolsIn(expressions: TraversableOnce[LambdaExpression]): Unit
Declares function symbols and base types from expressions.
-
abstract
def
pop(): Unit
Undos the commands since the corresponding push().
-
abstract
def
push(): Unit
Starts a new scope.
Starts a new scope. All commands that are issued will be reverted after the corresponding call to pop().
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from IncrementalProvingSession to any2stringadd[IncrementalProvingSession] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (IncrementalProvingSession, B)
- Implicit
- This member is added by an implicit conversion from IncrementalProvingSession to ArrowAssoc[IncrementalProvingSession] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
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
- @throws( ... )
-
def
declareSymbolsIn(expressions: LambdaExpression*): Unit
Declares function symbols and base types from expressions.
-
def
ensuring(cond: (IncrementalProvingSession) ⇒ Boolean, msg: ⇒ Any): IncrementalProvingSession
- Implicit
- This member is added by an implicit conversion from IncrementalProvingSession to Ensuring[IncrementalProvingSession] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (IncrementalProvingSession) ⇒ Boolean): IncrementalProvingSession
- Implicit
- This member is added by an implicit conversion from IncrementalProvingSession to Ensuring[IncrementalProvingSession] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): IncrementalProvingSession
- Implicit
- This member is added by an implicit conversion from IncrementalProvingSession to Ensuring[IncrementalProvingSession] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): IncrementalProvingSession
- Implicit
- This member is added by an implicit conversion from IncrementalProvingSession to Ensuring[IncrementalProvingSession] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
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] )
- def flatMap[A](f: (IncrementalProvingSession.this.type) ⇒ A): A
- def foreach(f: (IncrementalProvingSession.this.type) ⇒ Unit): Unit
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from IncrementalProvingSession to StringFormat[IncrementalProvingSession] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[A](f: (IncrementalProvingSession.this.type) ⇒ A): A
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
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
- @throws( ... )
-
def
withScope[A](f: ⇒ A): A
Run f in its own scope, i.e.
Run f in its own scope, i.e. push(); f; pop()
-
def
→[B](y: B): (IncrementalProvingSession, B)
- Implicit
- This member is added by an implicit conversion from IncrementalProvingSession to ArrowAssoc[IncrementalProvingSession] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc