3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-08 02:31:24 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-06 18:37:39 -07:00
parent ba820223ce
commit 9c6722bea8
3 changed files with 3 additions and 9 deletions

View file

@ -885,13 +885,8 @@ namespace datalog {
}
bool context::is_monotone() {
try {
m_rule_properties.check_for_negated_predicates();
return true;
}
catch (...) {
return false;
}
// only the spacer engine uses monotone semantics.
return get_engine() == SPACER_ENGINE;
}