//! Multi-agent pathfinding (MAPF) runtime re-exported from the grid owner crate.
//!
//! # Facade role
//!
//! - **Owner:** `condor-pathfinding-grid` (`condor_grid::mapf`).
//! - **This module:** feature-gated (`grid`) thin facade. Types and planners are
//! re-exported without renaming so owner identity is preserved.
//! - **Crate root:** the same items are also glob-re-exported at the crate root
//! when `grid` is enabled; prefer `condor::…` for application imports.
//!
//! Implementations, conflict models, and starter planners stay in the grid crate.
//! This module does not own algorithms or fixture loaders.
pub use *;