3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 13:40:52 +00:00
z3/src/tactic/ufbv/macro_finder_tactic.h
Nikolaj Bjorner b19f94ae5b make include paths uniformly use path relative to src. #534
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2017-07-31 13:24:11 -07:00

32 lines
495 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
macro_finder_tactic.h
Abstract:
Macro finder
Author:
Christoph (cwinter) 2012-10-26
Notes:
--*/
#ifndef MACRO_FINDER_TACTIC_H_
#define MACRO_FINDER_TACTIC_H_
#include "util/params.h"
class ast_manager;
class tactic;
tactic * mk_macro_finder_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("macro-finder", "Identifies and applies macros.", "mk_macro_finder_tactic(m, p)")
*/
#endif