mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 03:07:07 +00:00
31 lines
444 B
C++
31 lines
444 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
vsubst_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Check satisfiability of QF_NRA problems using virtual subsititution quantifier-elimination.
|
|
|
|
Author:
|
|
|
|
Nikolaj (nbjorner) 2011-05-16
|
|
|
|
Notes:
|
|
|
|
|
|
--*/
|
|
#ifndef _VSUBST_TACTIC_H_
|
|
#define _VSUBST_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_vsubst_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|
|
|