mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 04:31:24 +00:00
28 lines
458 B
C++
28 lines
458 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:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
#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)")
|
|
*/
|