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

adding validation code to doc/udoc

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-09-23 17:10:00 -07:00
parent 54506408f9
commit 1111c0494f
13 changed files with 328 additions and 104 deletions

View file

@ -261,7 +261,12 @@ class test_doc_cls {
rep1(fml, tmp1);
rep2.insert(m_vars[i].get(), m.mk_false());
rep2(fml, tmp2);
fml = m.mk_or(tmp1, tmp2);
if (tmp1 == tmp2) {
fml1 = tmp1;
}
else {
fml = m.mk_or(tmp1, tmp2);
}
}
}
}