use super::super::macros::*;
use crate::adversarial::defender::{Defendant, DefendantCatalog, DefenderClass};
#[must_use]
#[inline]
pub(crate) fn catalog_primitive_bitwise_popcount() -> DefendantCatalog {
DefendantCatalog {
target_op_id: "primitive.bitwise.popcount",
defendants: vec![
Defendant { id: "popcount_law_bounded_0_32_corruption_0", target_op_id: "primitive.bitwise.popcount", description: "POPCOUNT law mutation corruption 0 falsifies the declared bounded(0,32) law at a concrete witness.", class: DefenderClass::PseudoCorrect, broken_fn: popcount_law_mut::<0, 0, 0>, fails_laws: &["bounded(0,32)"], expected_witness: &[(0, 0)], },
Defendant { id: "popcount_law_bounded_0_32_corruption_1", target_op_id: "primitive.bitwise.popcount", description: "POPCOUNT law mutation corruption 1 falsifies the declared bounded(0,32) law at a concrete witness.", class: DefenderClass::PseudoCorrect, broken_fn: popcount_law_mut::<1, 0, 1>, fails_laws: &["bounded(0,32)"], expected_witness: &[(1, 0)], },
Defendant { id: "popcount_law_complement_primitive_bitwise_not_32_corruption_0", target_op_id: "primitive.bitwise.popcount", description: "POPCOUNT law mutation corruption 0 falsifies the declared complement(primitive.bitwise.not,32) law at a concrete witness.", class: DefenderClass::PseudoCorrect, broken_fn: popcount_law_mut::<2, 0, 0>, fails_laws: &["complement(primitive.bitwise.not,32)"], expected_witness: &[(2, 0)], },
Defendant { id: "popcount_law_complement_primitive_bitwise_not_32_corruption_1", target_op_id: "primitive.bitwise.popcount", description: "POPCOUNT law mutation corruption 1 falsifies the declared complement(primitive.bitwise.not,32) law at a concrete witness.", class: DefenderClass::PseudoCorrect, broken_fn: popcount_law_mut::<0x000000FF, 0, 1>, fails_laws: &["complement(primitive.bitwise.not,32)"], expected_witness: &[(0x000000FF, 0)], },
],
}
}