z3rs 0.0.3

A pure-Rust port of the Z3 theorem prover, free of third-party and native dependencies
Documentation
//! # `math` — Exact math: polynomial arithmetic, intervals, simplex, decision diagrams, Groebner, linear programming
//!
//! **Port phase 1.** Ported from the Z3 C++ component(s) below.
//! See [`ROADMAP.md`](../../ROADMAP.md) for the porting plan and status.
//!
//! ## Upstream C++ components to port
//! - [ ] `z3/src/interval`
//! - [ ] `z3/src/polynomial`
//! - [ ] `z3/src/simplex`
//! - [ ] `z3/src/dd`
//! - [ ] `z3/src/hilbert`
//! - [ ] `z3/src/subpaving`
//! - [ ] `z3/src/grobner`
//! - [ ] `z3/src/lp`
//!
//! ## Status: SCAFFOLD (no functionality ported yet)

// Submodules will be declared here as components are ported, mirroring the
// upstream file layout (e.g. `pub mod mpz;` for `z3/src/util/mpz.{h,cpp}`).