mirror of
https://github.com/Z3Prover/z3
synced 2025-08-28 05:58:55 +00:00
split muz_qe into two directories
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d795792304
commit
137339a2e1
174 changed files with 242 additions and 174 deletions
36
src/qe/qe_sat_tactic.h
Normal file
36
src/qe/qe_sat_tactic.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*++
|
||||
Copyright (c) 2012 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
qe_sat_tactic.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Procedure for quantifier satisfiability using quantifier elimination.
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2012-02-24
|
||||
|
||||
Revision History:
|
||||
|
||||
|
||||
--*/
|
||||
|
||||
|
||||
#ifndef __QE_SAT_H__
|
||||
#define __QE_SAT_H__
|
||||
|
||||
#include"tactic.h"
|
||||
|
||||
namespace qe {
|
||||
|
||||
tactic * mk_sat_tactic(ast_manager& m, params_ref const& p = params_ref());
|
||||
|
||||
};
|
||||
/*
|
||||
ADD_TACTIC("qe-sat", "check satisfiability of quantified formulas using quantifier elimination.", "qe::mk_sat_tactic(m, p)")
|
||||
*/
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue