mirror of
https://github.com/Z3Prover/z3
synced 2025-09-04 09:07:40 +00:00
fix substitution bug in qe, working on boogie trace
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
67aaec872a
commit
324dc5869d
47 changed files with 769 additions and 414 deletions
|
@ -249,7 +249,11 @@ namespace datalog {
|
|||
}
|
||||
|
||||
void mk_subsumption_checker::scan_for_relations_total_due_to_facts(rule_set const& source) {
|
||||
relation_manager& rm = m_context.get_rel_context().get_rmanager();
|
||||
rel_context* rel = m_context.get_rel_context();
|
||||
if (!rel) {
|
||||
return;
|
||||
}
|
||||
relation_manager& rm = rel->get_rmanager();
|
||||
|
||||
decl_set const& candidate_preds = m_context.get_predicates();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue