3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-20 23:56:37 +00:00

changed timeout behavior in duality

This commit is contained in:
Ken McMillan 2013-06-25 12:25:41 -07:00
parent 0f13ec6e42
commit 7cc6ff0a4c

View file

@ -367,8 +367,14 @@ expr_ref dl_interface::get_answer() {
}
void dl_interface::cancel() {
#if 0
if(_d && _d->ls)
_d->ls->cancel();
#else
// HACK: duality can't cancel at all times, we just exit here
std::cout << "(error \"duality canceled\")\nunknown\n";
exit(0);
#endif
}
void dl_interface::cleanup() {