mirror of
https://github.com/Z3Prover/z3
synced 2026-05-26 03:46:22 +00:00
* add parallel_tactical2.cpp: portfolio parallel solver using solver API Agent-Logs-Url: https://github.com/Z3Prover/z3/sessions/8b3749c7-5957-41aa-85b5-2d76d4780d61 Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * address code review: cap conflict growth, clarify cube/split comments, use mk_or for conflict clause Agent-Logs-Url: https://github.com/Z3Prover/z3/sessions/8b3749c7-5957-41aa-85b5-2d76d4780d61 Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
25 lines
468 B
C++
25 lines
468 B
C++
/*++
|
|
Copyright (c) 2024 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
parallel_tactical2.h
|
|
|
|
Abstract:
|
|
|
|
Parallel portfolio solver using the solver API.
|
|
Models the internals after smt/smt_parallel.cpp but operates
|
|
on generic solver objects instead of smt::context.
|
|
|
|
Author:
|
|
|
|
(based on smt_parallel.cpp and parallel_tactical.cpp)
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
class tactic;
|
|
class solver;
|
|
struct params_ref;
|
|
|
|
tactic * mk_parallel_tactic2(solver* s, params_ref const& p);
|