3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 21:38:44 +00:00
z3/src/tactic/smtlogics/qfufbv_tactic.h
Leonardo de Moura 0990a2e045 using a consistent naming convention for naming tactic subfolders
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-24 15:11:44 -07:00

29 lines
367 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
qfufbv_tactic.h
Abstract:
Tactic for QF_UFBV
Author:
Leonardo (leonardo) 2012-02-27
Notes:
--*/
#ifndef _QFUFBV_TACTIC_
#define _QFUFBV_TACTIC_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_qfufbv_tactic(ast_manager & m, params_ref const & p = params_ref());
#endif