3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-21 10:41:35 +00:00
z3/src/math/polynomial
LeeYoungJoon 0a93ff515d
Centralize and document TRACE tags using X-macros (#7657)
* Introduce X-macro-based trace tag definition
- Created trace_tags.def to centralize TRACE tag definitions
- Each tag includes a symbolic name and description
- Set up enum class TraceTag for type-safe usage in TRACE macros

* Add script to generate Markdown documentation from trace_tags.def
- Python script parses trace_tags.def and outputs trace_tags.md

* Refactor TRACE_NEW to prepend TraceTag and pass enum to is_trace_enabled

* trace: improve trace tag handling system with hierarchical tagging

- Introduce hierarchical tag-class structure: enabling a tag class activates all child tags
- Unify TRACE, STRACE, SCTRACE, and CTRACE under enum TraceTag
- Implement initial version of trace_tag.def using X(tag, tag_class, description)
  (class names and descriptions to be refined in a future update)

* trace: replace all string-based TRACE tags with enum TraceTag
- Migrated all TRACE, STRACE, SCTRACE, and CTRACE macros to use enum TraceTag values instead of raw string literals

* trace : add cstring header

* trace : Add Markdown documentation generation from trace_tags.def via mk_api_doc.py

* trace : rename macro parameter 'class' to 'tag_class' and remove Unicode comment in trace_tags.h.

* trace : Add TODO comment for future implementation of tag_class activation

* trace : Disable code related to tag_class until implementation is ready (#7663).
2025-05-28 14:31:25 +01:00
..
algebraic_numbers.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
algebraic_numbers.h encapsulate anum functionality 2024-01-20 12:59:58 -08:00
algebraic_params.pyg spell check from https://github.com/microsoft/z3guide/pull/165 2024-01-12 09:57:46 -08:00
CMakeLists.txt [CMake] Fix dependencies for generating gparams_register_modules.cpp. 2017-06-21 23:56:46 +01:00
linear_eq_solver.h Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
polynomial.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
polynomial.h Nlsat simplify (#7227) 2024-05-14 22:19:33 -07:00
polynomial_cache.cpp Nlsat simplify (#7227) 2024-05-14 22:19:33 -07:00
polynomial_cache.h booyah 2020-07-04 15:56:30 -07:00
polynomial_primes.h booyah 2020-07-04 15:56:30 -07:00
polynomial_var2value.h booyah 2020-07-04 15:56:30 -07:00
README remove hassel table from unstable: does not compile under other plantforms 2013-05-31 17:48:19 -07:00
rpolynomial.cpp add missing simplification; handle nit #6952 2023-10-25 10:00:15 -07:00
rpolynomial.h booyah 2020-07-04 15:56:30 -07:00
sexpr2upolynomial.cpp call it data instead of c_ptr for approaching C++11 std::vector convention. 2021-04-13 18:17:35 -07:00
sexpr2upolynomial.h booyah 2020-07-04 15:56:30 -07:00
upolynomial.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
upolynomial.h Use noexcept more. (#7058) 2023-12-16 12:14:53 +00:00
upolynomial_factorization.cpp Centralize and document TRACE tags using X-macros (#7657) 2025-05-28 14:31:25 +01:00
upolynomial_factorization.h booyah 2020-07-04 15:56:30 -07:00
upolynomial_factorization_int.h delete more default constructors 2024-09-23 12:59:04 +01:00

Polynomial manipulation package.
It contains support for univariate (upolynomial.*) and multivariate polynomials (polynomial.*).
Multivariate polynomial factorization does not work yet (polynomial_factorization.*), and it is disabled.