mirror of
https://github.com/Z3Prover/z3
synced 2025-04-18 14:49:01 +00:00
31 lines
494 B
C++
31 lines
494 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
qe_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Quantifier elimination front-end for tactic framework.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2011-12-28.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef QE_TACTIC_H_
|
|
#define QE_TACTIC_H_
|
|
|
|
#include "util/params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_qe_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
/*
|
|
ADD_TACTIC("qe", "apply quantifier elimination.", "mk_qe_tactic(m, p)")
|
|
*/
|
|
#endif
|