3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-20 04:36:41 +00:00

Use refutation to compute ground sat answer

This commit is contained in:
Arie Gurfinkel 2019-07-25 15:16:19 -04:00
parent 8a0d79251e
commit 92db639caf
4 changed files with 44 additions and 139 deletions

View file

@ -29,9 +29,9 @@ Revision History:
namespace spacer {
class ground_sat_answer_op {
context &m_ctx;
const context &m_ctx;
ast_manager &m;
manager &m_pm;
const manager &m_pm;
expr_ref_vector m_pinned;
obj_map<expr, proof*> m_cache;
@ -46,7 +46,7 @@ class ground_sat_answer_op {
model_ref &mdl, expr_ref_vector &subst);
public:
ground_sat_answer_op(context &ctx);
ground_sat_answer_op(const context &ctx);
proof_ref operator() (pred_transformer &query);
};