3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-18 09:12:16 +00:00
z3/src/smt/smt_parallel.h
Nikolaj Bjorner e24a5b6624
Revert "Parallel solving (#7775)" (#7777)
This reverts commit c8e866f568.
2025-08-14 18:16:35 -07:00

34 lines
436 B
C++

/*++
Copyright (c) 2020 Microsoft Corporation
Module Name:
smt_parallel.h
Abstract:
Parallel SMT, portfolio loop specialized to SMT core.
Author:
nbjorner 2020-01-31
Revision History:
--*/
#pragma once
#include "smt/smt_context.h"
namespace smt {
class parallel {
context& ctx;
public:
parallel(context& ctx): ctx(ctx) {}
lbool operator()(expr_ref_vector const& asms);
};
}