mirror of
https://github.com/Z3Prover/z3
synced 2026-04-29 23:33:38 +00:00
* Initial plan * build verified: nseq_regex moved to smt/seq Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * rename nseq_regex/state/model to seq_regex/state/model in smt/seq; add Clemens Eisenhofer as co-author Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * seq_model: remove theory_nseq dependency; get family_id from seq_util Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * Add comments for regex enhancements in seq_model Added comments regarding future improvements for regex handling. * Add comments for large exponent handling Add comments for handling large exponents in seq_model.cpp * Revise comments for clarity on sort usage Updated comments to reflect review suggestions regarding the use of the sort of 'n'. * seq_state: remove sgraph dep; seq_model: use snode sort for is_empty; remove NSB review comments Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * Update seq_state.h * Remove unnecessary include for smt_context.h * move seq_model from smt/seq/ to smt/; fix seq_state.h add_str_mem typo 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> Co-authored-by: Nikolaj Bjorner <nbjorner@microsoft.com>
98 lines
2 KiB
CMake
98 lines
2 KiB
CMake
z3_add_component(smt
|
|
SOURCES
|
|
arith_eq_adapter.cpp
|
|
arith_eq_solver.cpp
|
|
dyn_ack.cpp
|
|
expr_context_simplifier.cpp
|
|
fingerprints.cpp
|
|
mam.cpp
|
|
old_interval.cpp
|
|
qi_queue.cpp
|
|
seq_axioms.cpp
|
|
seq_eq_solver.cpp
|
|
seq_ne_solver.cpp
|
|
seq_offset_eq.cpp
|
|
seq_regex.cpp
|
|
smt_almost_cg_table.cpp
|
|
smt_arith_value.cpp
|
|
smt_case_split_queue.cpp
|
|
smt_cg_table.cpp
|
|
smt_checker.cpp
|
|
smt_clause.cpp
|
|
smt_clause_proof.cpp
|
|
smt_conflict_resolution.cpp
|
|
smt_consequences.cpp
|
|
smt_context.cpp
|
|
smt_context_inv.cpp
|
|
smt_context_pp.cpp
|
|
smt_context_stat.cpp
|
|
smt_enode.cpp
|
|
smt_farkas_util.cpp
|
|
smt_for_each_relevant_expr.cpp
|
|
smt_implied_equalities.cpp
|
|
smt_internalizer.cpp
|
|
smt_justification.cpp
|
|
smt_kernel.cpp
|
|
smt_literal.cpp
|
|
smt_lookahead.cpp
|
|
smt_model_checker.cpp
|
|
smt_model_finder.cpp
|
|
smt_model_generator.cpp
|
|
smt_parallel.cpp
|
|
smt_quantifier.cpp
|
|
smt_quick_checker.cpp
|
|
smt_relevancy.cpp
|
|
smt_setup.cpp
|
|
smt_solver.cpp
|
|
smt_statistics.cpp
|
|
smt_theory.cpp
|
|
smt_value_sort.cpp
|
|
smt2_extra_cmds.cpp
|
|
theory_arith.cpp
|
|
theory_array_base.cpp
|
|
theory_array.cpp
|
|
theory_array_full.cpp
|
|
theory_bv.cpp
|
|
theory_char.cpp
|
|
theory_datatype.cpp
|
|
theory_dense_diff_logic.cpp
|
|
theory_finite_set.cpp
|
|
theory_finite_set_size.cpp
|
|
theory_diff_logic.cpp
|
|
theory_dl.cpp
|
|
theory_dummy.cpp
|
|
theory_fpa.cpp
|
|
theory_intblast.cpp
|
|
theory_lra.cpp
|
|
theory_nseq.cpp
|
|
seq_model.cpp
|
|
theory_opt.cpp
|
|
theory_pb.cpp
|
|
theory_recfun.cpp
|
|
theory_seq.cpp
|
|
theory_seq_len.cpp
|
|
theory_sls.cpp
|
|
theory_special_relations.cpp
|
|
theory_user_propagator.cpp
|
|
theory_utvpi.cpp
|
|
theory_wmaxsat.cpp
|
|
uses_theory.cpp
|
|
watch_list.cpp
|
|
COMPONENT_DEPENDENCIES
|
|
solver_assertions
|
|
bit_blaster
|
|
cmd_context
|
|
fpa
|
|
grobner
|
|
nlsat
|
|
lp
|
|
macros
|
|
normal_forms
|
|
parser_util
|
|
pattern
|
|
proofs
|
|
proto_model
|
|
simplex
|
|
substitution
|
|
smt_seq
|
|
)
|