mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 04:48:45 +00:00
28 lines
344 B
C++
28 lines
344 B
C++
/*++
|
|
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
|