3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-04 09:07:40 +00:00
z3/src/tactic/ufbv/ufbv_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

35 lines
705 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
ufbv_tactic.h
Abstract:
General purpose tactic for UFBV benchmarks.
Author:
Christoph (cwinter) 2012-10-24
Notes:
--*/
#ifndef UFBV_TACTIC_H_
#define UFBV_TACTIC_H_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_ufbv_preprocessor_tactic(ast_manager & m, params_ref const & p = params_ref());
tactic * mk_ufbv_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("bv", "builtin strategy for solving BV problems (with quantifiers).", "mk_ufbv_tactic(m, p)")
ADD_TACTIC("ufbv", "builtin strategy for solving UFBV problems (with quantifiers).", "mk_ufbv_tactic(m, p)")
*/
#endif