3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-11 15:50:29 +00:00

Merge pull request #8919 from Z3Prover/copilot/fix-build-error-python

fix: add `lp` dependency to `smt_seq` component in Python build
This commit is contained in:
Nikolaj Bjorner 2026-03-10 09:24:52 -07:00 committed by GitHub
commit 4208d5d98e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -68,7 +68,7 @@ def init_project_def():
add_lib('subpaving_tactic', ['core_tactics', 'subpaving'], 'math/subpaving/tactic')
add_lib('proto_model', ['model', 'rewriter', 'params'], 'smt/proto_model')
add_lib('smt_seq', ['rewriter', 'euf'], 'smt/seq')
add_lib('smt_seq', ['rewriter', 'euf', 'lp'], 'smt/seq')
add_lib('smt', ['bit_blaster', 'macros', 'normal_forms', 'cmd_context', 'proto_model', 'solver_assertions',
'substitution', 'grobner', 'simplex', 'proofs', 'pattern', 'parser_util', 'fpa', 'lp', 'smt_seq'])
add_lib('sat_smt', ['sat', 'ast_sls', 'euf', 'smt', 'tactic', 'solver', 'params', 'bit_blaster', 'fpa', 'mbp', 'normal_forms', 'lp', 'pattern', 'qe_lite'], 'sat/smt')