mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
37 lines
565 B
C++
37 lines
565 B
C++
/*++
|
|
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/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
|