3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-17 00:32:16 +00:00
z3/src/tactic/smtlogics/qfuf_tactic.h
Leonardo de Moura 0990a2e045 using a consistent naming convention for naming tactic subfolders
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-24 15:11:44 -07:00

29 lines
365 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
qfuf_tactic.h
Abstract:
Tactic for QF_QFUF benchmarks.
Author:
Leonardo de Moura (leonardo) 2012-02-21
Notes:
--*/
#ifndef _QFUF_TACTIC_
#define _QFUF_TACTIC_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_qfuf_tactic(ast_manager & m, params_ref const & p);
#endif