//! Stop-condition metadata for the endpoint-level aggregation loop.
use crate::{NormativeStrength, Vector};
/// Slim technique metadata for the stop rule — vector + strength, no probe context.
#[derive(Debug, Clone)]
pub struct StrategyMetaForStop {
/// Detection vector for this strategy.
pub vector: Vector,
/// RFC normative strength of the expected differential.
pub normative_strength: NormativeStrength,
}