3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

expose strategic solver factory prototype at level of solver module

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-08-09 15:52:12 -07:00
parent 1ae0a98132
commit fc41a61b6e
3 changed files with 9 additions and 2 deletions

View file

@ -32,6 +32,8 @@ public:
virtual solver * operator()(ast_manager & m, params_ref const & p, bool proofs_enabled, bool models_enabled, bool unsat_core_enabled, symbol const & logic) = 0;
};
solver_factory * mk_smt_strategic_solver_factory(symbol const & logic = symbol::null);
/**
\brief Abstract interface for making solvers available in the Z3
API and front-ends such as SMT 2.0 and (legacy) SMT 1.0.