//! TirGraph โ graph representation of TIR for GNN encoding.
//!
//! Converts a flat `Vec<TIROp>` into a graph with typed edges:
//! - DataDep: producer->consumer via abstract stack simulation
//! - ControlFlow: sequential and branch edges
//! - MemOrder: conservative ordering between memory operations
// Re-export all public types at module level for backward compatibility.
pub use ;
pub use ;
use crateTIROp;
/// Graph representation of TIR operations.
trident/src/neural/data/tir_graph/mod.rs
ฯ 0.0%