mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
30 lines
365 B
C++
30 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
|