1 2 3 4 5 6 7
//! Graph op — nested DAG container with its own scheduler. //! //! Mirrors Python `operonx/core/ops/graph/`. pub mod graph_op; pub mod task_scheduler; pub mod validation;