mirror of
https://github.com/Z3Prover/z3
synced 2025-08-13 22:41:15 +00:00
33 lines
542 B
C++
33 lines
542 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
smt_solver.h
|
|
|
|
Abstract:
|
|
|
|
Wraps smt::kernel as a solver for the external API and cmd_context.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-10-21
|
|
|
|
Notes:
|
|
|
|
This file was called default_solver.h. It was a bad name.
|
|
|
|
--*/
|
|
#ifndef _SMT_SOLVER_H_
|
|
#define _SMT_SOLVER_H_
|
|
|
|
#include"ast.h"
|
|
#include"params.h"
|
|
|
|
class solver;
|
|
class solver_factory;
|
|
|
|
solver * mk_smt_solver(ast_manager & m, params_ref const & p, symbol const & logic);
|
|
solver_factory * mk_smt_solver_factory();
|
|
|
|
#endif
|