mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
reorganizing the code
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
b89d35dd69
commit
9e299b88c4
|
@ -19,11 +19,11 @@ parse_options()
|
|||
# 'NDEBUG;_EXTERNAL_RELEASE')
|
||||
|
||||
add_lib('util', [])
|
||||
add_lib('polynomial', ['util'])
|
||||
add_lib('polynomial', ['util'], 'math/polynomial')
|
||||
add_lib('sat', ['util'])
|
||||
# nlsat only reuses the file sat_types.h from sat
|
||||
add_lib('nlsat', ['polynomial', 'sat'])
|
||||
add_lib('subpaving', ['util'])
|
||||
add_lib('subpaving', ['util'], 'math/subpaving')
|
||||
add_lib('ast', ['util', 'polynomial'])
|
||||
add_lib('rewriter', ['ast', 'polynomial'])
|
||||
# Simplifier module will be deleted in the future.
|
||||
|
@ -47,31 +47,31 @@ add_lib('spc', ['simplifier', 'substitution', 'old_params', 'pattern'])
|
|||
add_lib('parser_util', ['ast'])
|
||||
add_lib('smt2parser', ['cmd_context', 'parser_util'])
|
||||
add_lib('macros', ['simplifier', 'old_params'])
|
||||
add_lib('grobner', ['ast'])
|
||||
add_lib('euclid', ['util'])
|
||||
add_lib('grobner', ['ast'], 'math/grobner')
|
||||
add_lib('euclid', ['util'], 'math/euclid')
|
||||
add_lib('proof_checker', ['rewriter', 'spc'])
|
||||
add_lib('bit_blaster', ['rewriter', 'simplifier', 'old_params', 'tactic', 'assertion_set'])
|
||||
add_lib('bit_blaster', ['rewriter', 'simplifier', 'old_params', 'tactic', 'assertion_set'], 'bv/bit_blaster')
|
||||
add_lib('smt', ['assertion_set', 'bit_blaster', 'macros', 'normal_forms', 'cmd_context',
|
||||
'substitution', 'grobner', 'euclid', 'proof_checker', 'pattern', 'parser_util'])
|
||||
add_lib('user_plugin', ['smt'])
|
||||
add_lib('user_plugin', ['smt'], 'smt/user_plugin')
|
||||
add_lib('core_tactics', ['tactic', 'normal_forms'])
|
||||
add_lib('sat_tactic', ['tactic', 'sat'])
|
||||
add_lib('sat_strategy', ['assertion_set', 'sat_tactic'])
|
||||
add_lib('sat_tactic', ['tactic', 'sat'], 'sat/tactic')
|
||||
add_lib('sat_strategy', ['assertion_set', 'sat_tactic'], 'sat/strategy')
|
||||
add_lib('arith_tactics', ['core_tactics', 'assertion_set', 'sat', 'sat_strategy'])
|
||||
add_lib('nlsat_tactic', ['nlsat', 'sat_tactic', 'arith_tactics'])
|
||||
add_lib('subpaving_tactic', ['core_tactics', 'subpaving'])
|
||||
add_lib('bv_tactics', ['tactic', 'bit_blaster'])
|
||||
add_lib('fuzzing', ['ast'])
|
||||
add_lib('nlsat_tactic', ['nlsat', 'sat_tactic', 'arith_tactics'], 'nlsat/tactic')
|
||||
add_lib('subpaving_tactic', ['core_tactics', 'subpaving'], 'math/subpaving/tactic')
|
||||
add_lib('bv_tactics', ['tactic', 'bit_blaster'], 'bv/tactics')
|
||||
add_lib('fuzzing', ['ast'], 'test/fuzzing')
|
||||
add_lib('fpa', ['core_tactics', 'bv_tactics', 'sat_tactic'])
|
||||
add_lib('smt_tactic', ['smt'])
|
||||
add_lib('extra_cmds', ['cmd_context', 'subpaving_tactic', 'arith_tactics'])
|
||||
add_lib('sls_tactic', ['tactic', 'normal_forms', 'core_tactics', 'bv_tactics'])
|
||||
add_lib('smt_tactic', ['smt'], 'smt/tactic')
|
||||
add_lib('extra_cmds', ['cmd_context', 'subpaving_tactic', 'arith_tactics'], 'cmd_context/extra_cmds')
|
||||
add_lib('sls_tactic', ['tactic', 'normal_forms', 'core_tactics', 'bv_tactics'], 'bv/sls_tactic')
|
||||
add_lib('aig', ['cmd_context', 'assertion_set'])
|
||||
# TODO: split muz_qe into muz, qe. Perhaps, we should also consider breaking muz into muz and pdr.
|
||||
add_lib('muz_qe', ['smt', 'sat', 'smt2parser'])
|
||||
add_lib('smtlogic_tactics', ['arith_tactics', 'bv_tactics', 'nlsat_tactic', 'smt_tactic', 'aig', 'muz_qe'])
|
||||
# TODO: rewrite ufbv_strategy as a tactic and move to smtlogic_tactics.
|
||||
add_lib('ufbv_strategy', ['assertion_set', 'normal_forms', 'macros', 'smt_tactic', 'rewriter'])
|
||||
add_lib('ufbv_strategy', ['assertion_set', 'normal_forms', 'macros', 'smt_tactic', 'rewriter'], 'bv/ufbv_strategy')
|
||||
add_lib('portfolio', ['smtlogic_tactics', 'ufbv_strategy', 'fpa', 'aig', 'muz_qe', 'sls_tactic', 'subpaving_tactic'])
|
||||
# TODO: delete SMT 1.0 frontend
|
||||
add_lib('api', ['portfolio', 'user_plugin'])
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue