// ---
// tags: zheng, rust, phi, spmv, tri-kernel
// crystal-type: source
// crystal-domain: comp
// ---
//! ฯ* SpMV circuit โ prove tri-kernel convergence inside zheng.
//!
//! Implements the core of provable consensus: sparse matrix-vector
//! multiply as multi-row CCS, then diffusion / springs / heat / combine as
//! compositions of SpMV, folded over iterations into a HyperNova accumulator.
//!
//! Domain-sized graphs (ฮต-support, not planetary N) are the intended prove
//! target โ same localization foculus uses for finality. Planetary 1.4B
//! constraint proofs are this module at scale, not a different design.
//!
//! Sections (provable-consensus.md):
//! - SpMV: public A, witness x,y โ Aยทx โ y = 0 (linear multi-row CCS)
//! - D / S / H: SpMV with public transition / symmetric weights
//! - combine + L1 normalize
//! - K iterations folded; decide โ one proof
pub use ;
pub use ;
Homonyms
cyb/evy/forks/naga/src/back/hlsl/mod.rs
struct Baz { m: mat3x2, } struct Baz { float2 m_0; float2 m_1; float2 m_2; }; float3x2 GetMatmOnBaz(Baz obj) { return float3x2(obj.m_0, obj.m_1, obj.m_2); }