3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 20:46:01 +00:00

Merge branch 'unstable' of https://git01.codeplex.com/z3 into unstable

This commit is contained in:
Nikolaj Bjorner 2013-03-29 08:53:50 -07:00
commit 0590101e6f
41 changed files with 61 additions and 74 deletions

View file

@ -71,7 +71,7 @@ namespace datalog {
m_dirty=true;
}
bool rule_transformer::operator()(rule_set & rules, model_converter_ref& mc) {
bool rule_transformer::operator()(rule_set & rules) {
ensure_ordered();
bool modified = false;
@ -85,7 +85,7 @@ namespace datalog {
for(; it!=end && !m_context.canceled(); ++it) {
plugin & p = **it;
rule_set * new_rules = p(rules, mc);
rule_set * new_rules = p(rules);
if (!new_rules) {
continue;
}