z3rs 0.0.3

A pure-Rust port of the Z3 theorem prover, free of third-party and native dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # `model` — Models, model evaluation, model converters
//!
//! **Port phase 3.** 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/model`
//! - [ ] `z3/src/converters`
//! - [ ] `z3/src/proto_model`
//!
//! ## 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}`).