mirror of
https://github.com/Z3Prover/z3
synced 2025-04-20 07:36:38 +00:00
changed timeout behavior in duality
This commit is contained in:
parent
0f13ec6e42
commit
7cc6ff0a4c
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue