3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-09 19:01:50 +00:00
z3/lib/ufbv_tactic.h
Christoph M. Wintersteiger eaedad4d1e Added ufbv_tactic (soon to replace ufbv_strategy).
Renamed demodulator to ufbv_rewriter (filename and in code).

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
2012-10-24 18:28:29 +01:00

31 lines
445 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_macro_finder_tactic(ast_manager & m, params_ref const & p);
tactic * mk_ufbv_tactic(ast_manager & m, params_ref const & p);
#endif