3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-16 05:48:44 +00:00
z3/src/smt/smt_parallel.h
Nikolaj Bjorner 9fab72b3ef fix build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2020-01-31 22:20:25 -08:00

35 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);
};
}