mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
separate component for asserted_formulas to break dependency cycles
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
25343232ca
commit
ab0735fde2
6 changed files with 7 additions and 6 deletions
|
@ -1,6 +1,5 @@
|
|||
z3_add_component(solver
|
||||
SOURCES
|
||||
asserted_formulas.cpp
|
||||
check_sat_result.cpp
|
||||
check_logic.cpp
|
||||
combined_solver.cpp
|
||||
|
@ -15,7 +14,6 @@ z3_add_component(solver
|
|||
COMPONENT_DEPENDENCIES
|
||||
model
|
||||
tactic
|
||||
smt_params
|
||||
PYG_FILES
|
||||
combined_solver_params.pyg
|
||||
parallel_params.pyg
|
||||
|
|
|
@ -26,7 +26,8 @@ Revision History:
|
|||
#include "ast/pattern/pattern_inference.h"
|
||||
#include "ast/macros/quasi_macros.h"
|
||||
#include "ast/occurs.h"
|
||||
#include "solver/asserted_formulas.h"
|
||||
#include "solver/assertions/asserted_formulas.h"
|
||||
|
||||
|
||||
asserted_formulas::asserted_formulas(ast_manager & m, smt_params & sp, params_ref const& p):
|
||||
m(m),
|
Loading…
Add table
Add a link
Reference in a new issue