3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-06 11:20:26 +00:00
z3/src/tactic/smtlogics/qfbv_tactic.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

36 lines
637 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_H_
#define QFBV_TACTIC_H_
#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