3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-23 20:58:54 +00:00

tune and fix doc

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-09-24 09:20:21 -07:00
parent 16f80fce92
commit 918d52f1b0
13 changed files with 188 additions and 103 deletions

View file

@ -574,7 +574,7 @@ namespace datalog {
void context::check_uninterpreted_free(rule& r) {
func_decl* f = 0;
if (r.has_uninterpreted_non_predicates(m, f)) {
if (get_rule_manager().has_uninterpreted_non_predicates(r, f)) {
std::stringstream stm;
stm << "Uninterpreted '"
<< f->get_name()
@ -585,7 +585,7 @@ namespace datalog {
}
void context::check_quantifier_free(rule& r) {
if (r.has_quantifiers()) {
if (get_rule_manager().has_quantifiers(r)) {
std::stringstream stm;
stm << "cannot process quantifiers in rule ";
r.display(*this, stm);