mirror of
https://github.com/Z3Prover/z3
synced 2025-04-09 19:01:50 +00:00
Renamed demodulator to ufbv_rewriter (filename and in code). Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
31 lines
445 B
C++
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
|