pub type EdgeCondition = Arc<dyn Fn(&State) -> bool + Send + Sync>;
边条件回调类型别名。 Arc 包装以支持 Graph Clone(条件回调不可 Clone)。
pub struct EdgeCondition { /* private fields */ }