3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +00:00

fixed duality bug and added some code for returning bounded status (not yet used)

This commit is contained in:
Ken McMillan 2014-08-18 17:13:16 -07:00
parent e17af8a5de
commit 70a1155d71
5 changed files with 93 additions and 1 deletions

View file

@ -252,6 +252,11 @@ public:
print_certificate(ctx);
break;
case l_undef:
if(dlctx.get_status() == datalog::BOUNDED){
ctx.regular_stream() << "bounded\n";
print_certificate(ctx);
break;
}
ctx.regular_stream() << "unknown\n";
switch(dlctx.get_status()) {
case datalog::INPUT_ERROR: