3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-09 04:31:24 +00:00

fix cover retrieval for slicing

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2012-11-13 17:00:01 +01:00
parent 854641c8db
commit 68ae5d434c
6 changed files with 67 additions and 20 deletions

View file

@ -97,10 +97,14 @@ namespace datalog {
the \c goal must be present in the \c rule_set that is being transformed.
*/
mk_slice(context & ctx);
virtual ~mk_slice() { }
rule_set * operator()(rule_set const & source, model_converter_ref& mc, proof_converter_ref& pc);
func_decl* get_predicate(func_decl* p) { func_decl* q = p; m_predicates.find(p, q); return q; }
obj_map<func_decl, func_decl*> const& get_predicates() { return m_predicates; }
};
};