3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
z3/src/tactic/smtlogics/qfufbv_tactic.h

33 lines
474 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_H_
#define QFUFBV_TACTIC_H_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_qfufbv_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("qfufbv", "builtin strategy for solving QF_UFBV problems.", "mk_qfufbv_tactic(m, p)")
*/
#endif