use super::super::macros::*;
use crate::adversarial::defender::{Defendant, DefendantCatalog, DefenderClass};
#[must_use]
#[inline]
pub(crate) fn catalog_primitive_math_clamp() -> DefendantCatalog {
DefendantCatalog {
target_op_id: "primitive.math.clamp",
defendants: vec![
Defendant { id: "clamp_law_bounded_0_4294967295_corruption_0", target_op_id: "primitive.math.clamp", description: "CLAMP law mutation corruption 0 falsifies the declared bounded(0,4294967295) law at a concrete witness.", class: DefenderClass::PseudoCorrect, broken_fn: clamp_law_mut::<0, 0, 0>, fails_laws: &["bounded(0,4294967295)"], expected_witness: &[(0, 0)], },
Defendant { id: "clamp_law_bounded_0_4294967295_corruption_1", target_op_id: "primitive.math.clamp", description: "CLAMP law mutation corruption 1 falsifies the declared bounded(0,4294967295) law at a concrete witness.", class: DefenderClass::PseudoCorrect, broken_fn: clamp_law_mut::<1, 0, 1>, fails_laws: &["bounded(0,4294967295)"], expected_witness: &[(1, 0)], },
],
}
}