mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 11:17:07 +00:00
35 lines
416 B
C++
35 lines
416 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.h"
|
|
|
|
namespace qe {
|
|
|
|
tactic * mk_sat_tactic(ast_manager& m, params_ref const& p);
|
|
|
|
};
|
|
|
|
|
|
#endif
|