mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
add randomization to lookahead selection'
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
615da0e3fb
commit
75fb25a06c
2 changed files with 8 additions and 4 deletions
|
@ -17,6 +17,7 @@ Author:
|
|||
|
||||
#include "util/scoped_ptr_vector.h"
|
||||
#include "ast/ast_util.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "ast/ast_translation.h"
|
||||
#include "smt/smt_parallel.h"
|
||||
#include "smt/smt_lookahead.h"
|
||||
|
@ -115,7 +116,7 @@ namespace smt {
|
|||
}
|
||||
IF_VERBOSE(1, verbose_stream() << "(smt.thread " << i;
|
||||
if (num_rounds > 0) verbose_stream() << " :round " << num_rounds;
|
||||
if (c) verbose_stream() << " :cube: " << c;
|
||||
if (c) verbose_stream() << " :cube: " << mk_pp(c, pm);
|
||||
verbose_stream() << ")\n";);
|
||||
lbool r = pctx.check(lasms.size(), lasms.c_ptr());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue