mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
93 lines
5 KiB
Python
93 lines
5 KiB
Python
############################################
|
|
# Copyright (c) 2012 Microsoft Corporation
|
|
#
|
|
# Z3 project configuration files
|
|
#
|
|
# Author: Leonardo de Moura (leonardo)
|
|
############################################
|
|
from mk_util import *
|
|
|
|
# Z3 Project definition
|
|
def init_project_def():
|
|
set_version(4, 3, 2, 0)
|
|
add_lib('util', [])
|
|
add_lib('polynomial', ['util'], 'math/polynomial')
|
|
add_lib('sat', ['util'])
|
|
add_lib('nlsat', ['polynomial', 'sat'])
|
|
add_lib('interval', ['util'], 'math/interval')
|
|
add_lib('realclosure', ['interval'], 'math/realclosure')
|
|
add_lib('subpaving', ['interval'], 'math/subpaving')
|
|
add_lib('ast', ['util', 'polynomial'])
|
|
add_lib('rewriter', ['ast', 'polynomial'], 'ast/rewriter')
|
|
add_lib('normal_forms', ['rewriter'], 'ast/normal_forms')
|
|
add_lib('model', ['rewriter'])
|
|
add_lib('tactic', ['ast', 'model'])
|
|
add_lib('substitution', ['ast', 'rewriter'], 'ast/substitution')
|
|
add_lib('parser_util', ['ast'], 'parsers/util')
|
|
add_lib('grobner', ['ast'], 'math/grobner')
|
|
add_lib('euclid', ['util'], 'math/euclid')
|
|
add_lib('core_tactics', ['tactic', 'normal_forms'], 'tactic/core')
|
|
add_lib('sat_tactic', ['tactic', 'sat'], 'sat/tactic')
|
|
add_lib('arith_tactics', ['core_tactics', 'sat'], 'tactic/arith')
|
|
add_lib('nlsat_tactic', ['nlsat', 'sat_tactic', 'arith_tactics'], 'nlsat/tactic')
|
|
add_lib('subpaving_tactic', ['core_tactics', 'subpaving'], 'math/subpaving/tactic')
|
|
add_lib('aig_tactic', ['tactic'], 'tactic/aig')
|
|
add_lib('solver', ['model', 'tactic'])
|
|
add_lib('cmd_context', ['solver', 'rewriter'])
|
|
add_lib('extra_cmds', ['cmd_context', 'subpaving_tactic', 'arith_tactics'], 'cmd_context/extra_cmds')
|
|
add_lib('smt2parser', ['cmd_context', 'parser_util'], 'parsers/smt2')
|
|
add_lib('proof_checker', ['rewriter'], 'ast/proof_checker')
|
|
# Simplifier module will be deleted in the future.
|
|
# It has been replaced with rewriter module.
|
|
add_lib('simplifier', ['rewriter'], 'ast/simplifier')
|
|
add_lib('macros', ['simplifier'], 'ast/macros')
|
|
add_lib('pattern', ['normal_forms', 'smt2parser', 'simplifier'], 'ast/pattern')
|
|
add_lib('bit_blaster', ['rewriter', 'simplifier'], 'ast/rewriter/bit_blaster')
|
|
add_lib('smt_params', ['ast', 'simplifier', 'pattern', 'bit_blaster'], 'smt/params')
|
|
add_lib('proto_model', ['model', 'simplifier', 'smt_params'], 'smt/proto_model')
|
|
add_lib('smt', ['bit_blaster', 'macros', 'normal_forms', 'cmd_context', 'proto_model',
|
|
'substitution', 'grobner', 'euclid', 'proof_checker', 'pattern', 'parser_util'])
|
|
add_lib('user_plugin', ['smt'], 'smt/user_plugin')
|
|
add_lib('bv_tactics', ['tactic', 'bit_blaster'], 'tactic/bv')
|
|
add_lib('fuzzing', ['ast'], 'test/fuzzing')
|
|
add_lib('fpa', ['core_tactics', 'bv_tactics', 'sat_tactic'], 'tactic/fpa')
|
|
add_lib('smt_tactic', ['smt'], 'smt/tactic')
|
|
add_lib('sls_tactic', ['tactic', 'normal_forms', 'core_tactics', 'bv_tactics'], 'tactic/sls')
|
|
add_lib('qe', ['smt','sat'], 'qe')
|
|
add_lib('muz', ['smt', 'sat', 'smt2parser', 'aig_tactic', 'qe'])
|
|
add_lib('transforms', ['muz'], 'muz/transforms')
|
|
add_lib('rel', ['muz', 'transforms'], 'muz/rel')
|
|
add_lib('pdr', ['muz', 'transforms'], 'muz/pdr')
|
|
add_lib('clp', ['muz', 'transforms'], 'muz/clp')
|
|
add_lib('tab', ['muz', 'transforms'], 'muz/tab')
|
|
add_lib('bmc', ['muz', 'transforms'], 'muz/bmc')
|
|
add_lib('fp', ['muz', 'pdr', 'clp', 'tab', 'rel', 'bmc'], 'muz/fp')
|
|
add_lib('smtlogic_tactics', ['arith_tactics', 'bv_tactics', 'nlsat_tactic', 'smt_tactic', 'aig_tactic', 'fp', 'muz','qe'], 'tactic/smtlogics')
|
|
add_lib('ufbv_tactic', ['normal_forms', 'core_tactics', 'macros', 'smt_tactic', 'rewriter'], 'tactic/ufbv')
|
|
add_lib('portfolio', ['smtlogic_tactics', 'ufbv_tactic', 'fpa', 'aig_tactic', 'fp', 'muz', 'qe','sls_tactic', 'subpaving_tactic'], 'tactic/portfolio')
|
|
add_lib('smtparser', ['portfolio'], 'parsers/smt')
|
|
API_files = ['z3_api.h', 'z3_algebraic.h', 'z3_polynomial.h', 'z3_rcf.h']
|
|
add_lib('api', ['portfolio', 'user_plugin', 'smtparser', 'realclosure'],
|
|
includes2install=['z3.h', 'z3_v1.h', 'z3_macros.h'] + API_files)
|
|
add_exe('shell', ['api', 'sat', 'extra_cmds'], exe_name='z3')
|
|
add_exe('test', ['api', 'fuzzing'], exe_name='test-z3', install=False)
|
|
add_dll('api_dll', ['api', 'sat', 'extra_cmds'], 'api/dll',
|
|
reexports=['api'],
|
|
dll_name='libz3',
|
|
static=build_static_lib(),
|
|
export_files=API_files)
|
|
add_dot_net_dll('dotnet', ['api_dll'], 'api/dotnet', dll_name='Microsoft.Z3', assembly_info_dir='Properties')
|
|
add_java_dll('java', ['api_dll'], 'api/java', dll_name='libz3java', package_name="com.microsoft.z3", manifest_file='manifest')
|
|
add_hlib('cpp', 'api/c++', includes2install=['z3++.h'])
|
|
set_z3py_dir('api/python')
|
|
# Examples
|
|
add_cpp_example('cpp_example', 'c++')
|
|
add_c_example('c_example', 'c')
|
|
add_c_example('maxsat')
|
|
add_dotnet_example('dotnet_example', 'dotnet')
|
|
add_java_example('java_example', 'java')
|
|
add_z3py_example('py_example', 'python')
|
|
return API_files
|
|
|
|
|