parlov-core 0.7.0

Shared types, error types, and oracle class definitions for parlov.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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,
}