3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-31 23:34:55 +00:00
z3/src/tactic/smtlogics/qfbv_tactic.h
Nikolaj Bjorner 81c2560854 experimenting with inc-sat
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2014-05-14 15:13:26 -07:00

36 lines
635 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
qfbv_tactic.h
Abstract:
Tactic for QF_BV based on bit-blasting
Author:
Leonardo (leonardo) 2012-02-22
Notes:
--*/
#ifndef _QFBV_TACTIC_
#define _QFBV_TACTIC_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_qfbv_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("qfbv", "builtin strategy for solving QF_BV problems.", "mk_qfbv_tactic(m, p)")
*/
tactic * mk_qfbv_preamble(ast_manager& m, params_ref const& p);
tactic * mk_qfbv_tactic(ast_manager & m, params_ref const & p, tactic* sat, tactic* smt);
#endif