mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 03:07:07 +00:00
guard against untempered parameter combinations #3877
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e1d2480a8b
commit
4532b07e88
|
@ -57,6 +57,9 @@ namespace smt {
|
|||
unsigned error_code = 0;
|
||||
bool done = false;
|
||||
unsigned num_rounds = 0;
|
||||
if (m.has_trace_stream())
|
||||
throw default_exception("trace streams have to be off in parallel mode");
|
||||
|
||||
|
||||
for (unsigned i = 0; i < num_threads; ++i) {
|
||||
ast_manager* new_m = alloc(ast_manager, m, true);
|
||||
|
|
Loading…
Reference in a new issue