Skip to content

Commit

Permalink
use bounded pp for cubes
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Jul 28, 2020
1 parent f7b2407 commit 42b42dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/smt/smt_parallel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Module Name:
#include "util/scoped_ptr_vector.h"
#include "ast/ast_util.h"
#include "ast/ast_pp.h"
#include "ast/ast_ll_pp.h"
#include "ast/ast_translation.h"
#include "smt/smt_parallel.h"
#include "smt/smt_lookahead.h"
Expand Down Expand Up @@ -148,7 +149,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: " << mk_pp(c, pm);
if (c) verbose_stream() << " :cube: " << mk_bounded_pp(c, pm, 3);
verbose_stream() << ")\n";);
lbool r = pctx.check(lasms.size(), lasms.c_ptr());

Expand Down

0 comments on commit 42b42dd

Please sign in to comment.