mirror of
https://github.com/Z3Prover/z3
synced 2025-08-11 13:40:52 +00:00
adding outline for parallel tactic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
42de274307
commit
a0cd6e0fca
7 changed files with 133 additions and 4 deletions
27
src/tactic/portfolio/parallel_tactic.h
Normal file
27
src/tactic/portfolio/parallel_tactic.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*++
|
||||
Copyright (c) 2017 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
parallel_tactic.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Parallel tactic in the style of Treengeling.
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2017-10-9
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef PARALLEL_TACTIC_H_
|
||||
#define PARALLEL_TACTIC_H_
|
||||
|
||||
class solver;
|
||||
class tactic;
|
||||
|
||||
tactic * mk_parallel_tactic(solver* s);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue