mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 19:47:52 +00:00
Renamed the soft_timeout option to just timeout.
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
be709802cd
commit
b76d588c28
9 changed files with 11 additions and 11 deletions
|
@ -128,8 +128,8 @@ namespace datalog {
|
|||
|
||||
lbool rel_context::saturate(scoped_query& sq) {
|
||||
m_context.ensure_closed();
|
||||
bool time_limit = m_context.soft_timeout()!=0;
|
||||
unsigned remaining_time_limit = m_context.soft_timeout();
|
||||
bool time_limit = m_context.timeout()!=0;
|
||||
unsigned remaining_time_limit = m_context.timeout();
|
||||
unsigned restart_time = m_context.initial_restart_timeout();
|
||||
|
||||
instruction_block termination_code;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue