Package

smtlib

drivers

Permalink

package drivers

provides drivers that adapt standard SMT-LIB to solver specific behaviour

In particula, some solvers only support a subset of SMT-LIB or an outdated version. The aim of the drivers are to simplify the interface for other tools. All the tools have to be concerned about is to follow the SMT-LIB standard, and the driver will take care of any peculiarity of the solver.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. drivers
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. class SemanticsDriver extends AnyRef

    Permalink

    Provide standard complient behaviour for a sequence of commands.

    Provide standard complient behaviour for a sequence of commands.

    This driver will properly understand the whole SMT-LIB 2.5 language, maintaining proper state and forwarding work to an underlying solver. The behaviour of this driver is to perfectly follow the standard, and properly abstract the peculiarities of the black box solvers so that they can be used with SMT-LIB 2.5 language.

    One difficult in implementing the SMT-LIB standard is that the standard is designed for process interaction, relying on both a standard output and standard error channel. Standard output and error are part of the interface of the driver, and by default will be available on the driver. If one sets the :diagnostic-output-channel or :regular-output-channel options, that will redirect this behaviour and send the outputs to files. Basically: stdout and stderr are the iterator attached to this driver.

    TODO: this is work in progress, not usable yet.

Value Members

  1. object Main

    Permalink

    Provides an entry point to run a command line wrapper on a driver

  2. object SemanticsDriver

    Permalink
  3. package cvc4

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped