pub fn are_exclusive_operators<T, V, O>(
target: &SiteIndexNetwork<V, T::Index>,
operators: &[&O],
) -> boolExpand description
Check if a set of operators are exclusive (non-overlapping) on the target network.
Operators are exclusive if:
- Vertex-disjoint: No two operators share a node
- Connected subtrees: Each operator’s nodes form a connected subtree
- Path-exclusive: Paths between different operators don’t cross other operators
§Arguments
target- The target site index network (full space)operators- The operators to check
§Returns
true if operators are exclusive, false otherwise.