pub trait ValidationStrategy: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn evaluate(
&self,
baseline: f64,
current: f64,
sample_count: usize,
) -> ValidationResult;
}Expand description
検証戦略 trait
検証基準を定義し、baseline と current を比較して判定を行う。