mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
29 lines
365 B
C++
29 lines
365 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
qfidl_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Tactic for QF_IDL
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-02-21
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _QFIDL_TACTIC_H_
|
|
#define _QFIDL_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_qfidl_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|