mirror of
https://github.com/Z3Prover/z3
synced 2025-06-18 11:58:31 +00:00
missing virtual functions
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4f9ef12f34
commit
06771d1ac5
2 changed files with 9 additions and 2 deletions
|
@ -49,6 +49,9 @@ class non_parallel_tactic : public tactic {
|
|||
void operator()(const goal_ref & g,goal_ref_buffer & result) override {
|
||||
throw default_exception("parallel tactic is disabled in single threaded mode");
|
||||
}
|
||||
tactic * translate(ast_manager & m) override { return nullptr; }
|
||||
void cleanup() override {}
|
||||
|
||||
};
|
||||
|
||||
#ifdef SINGLE_THREAD
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue