mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 20:33:38 +00:00
set timout to max
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
02b419c939
commit
9c4409a8fe
1 changed files with 2 additions and 1 deletions
|
@ -108,7 +108,8 @@ extern "C" {
|
||||||
RESET_ERROR_CODE();
|
RESET_ERROR_CODE();
|
||||||
lbool r = l_undef;
|
lbool r = l_undef;
|
||||||
cancel_eh<opt::context> eh(*to_optimize_ref(o));
|
cancel_eh<opt::context> eh(*to_optimize_ref(o));
|
||||||
unsigned timeout = 0; // to_optimize(o)->m_params.get_uint("timeout", mk_c(c)->get_timeout());
|
unsigned timeout = 0xFFFFFFF;
|
||||||
|
// to_optimize(o)->m_params.get_uint("timeout", mk_c(c)->get_timeout());
|
||||||
api::context::set_interruptable si(*(mk_c(c)), eh);
|
api::context::set_interruptable si(*(mk_c(c)), eh);
|
||||||
{
|
{
|
||||||
scoped_timer timer(timeout, &eh);
|
scoped_timer timer(timeout, &eh);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue