mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 21:38:44 +00:00
another module level ifdef for #4382
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c8c02060ee
commit
fd57faee7c
|
@ -15,12 +15,24 @@ 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"
|
||||
|
||||
#ifdef SINGLE_THREAD
|
||||
|
||||
namespace smt {
|
||||
|
||||
lbool parallel::operator()(expr_ref_vector const& asms) {
|
||||
return l_undef;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
#include <thread>
|
||||
|
||||
namespace smt {
|
||||
|
@ -234,3 +246,4 @@ namespace smt {
|
|||
}
|
||||
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,17 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#include "util/scoped_ptr_vector.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "ast/ast_util.h"
|
||||
#include "ast/ast_translation.h"
|
||||
#include "solver/solver.h"
|
||||
#include "solver/solver2tactic.h"
|
||||
#include "tactic/tactic.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "solver/parallel_tactic.h"
|
||||
#include "solver/parallel_params.hpp"
|
||||
|
||||
#ifdef SINGLE_THREAD
|
||||
|
||||
tactic * mk_parallel_tactic(solver* s, params_ref const& p) {
|
||||
|
@ -40,16 +51,6 @@ tactic * mk_parallel_tactic(solver* s, params_ref const& p) {
|
|||
#include <mutex>
|
||||
#include <cmath>
|
||||
#include <condition_variable>
|
||||
#include "util/scoped_ptr_vector.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "ast/ast_util.h"
|
||||
#include "ast/ast_translation.h"
|
||||
#include "solver/solver.h"
|
||||
#include "solver/solver2tactic.h"
|
||||
#include "tactic/tactic.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "solver/parallel_tactic.h"
|
||||
#include "solver/parallel_params.hpp"
|
||||
|
||||
class parallel_tactic : public tactic {
|
||||
|
||||
|
|
Loading…
Reference in a new issue