// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//! vLLM scheduler simulation around a unified waiting/running request model.
//!
//! Reference: vllm/vllm/v1/core/sched/scheduler.py
pub use VllmCore;
pub use ;
/// Re-exported for the sibling `crate::scheduler::trtllm` tests, which assert on
/// request status through [`VllmCore::state`]; only needed in test builds.
pub use RequestStatus;