//===-- MetaSMTSolver.h //---------------------------------------------------===// // // The KLEE Symbolic Virtual Machine // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef KLEE_METASMTSOLVER_H #define KLEE_METASMTSOLVER_H #include "klee/Solver/Solver.h" #include namespace klee { template class MetaSMTSolver : public Solver { public: MetaSMTSolver(bool useForked, bool optimizeDivides); virtual ~MetaSMTSolver(); virtual char *getConstraintLog(const Query &); virtual void setCoreSolverTimeout(time::Span timeout); }; /// createMetaSMTSolver - Create a solver using the metaSMT backend set by /// the option MetaSMTBackend. std::unique_ptr createMetaSMTSolver(); } #endif /* KLEE_METASMTSOLVER_H */