use crate::components::prelude::*;
use crate::components::subroutines::verify_u_32::VerifyU32;
#[derive(Copy, Clone, Serialize, Deserialize, CairoSerialize)]
pub struct ReadU32 {}
impl ReadU32 {
#[allow(unused_parens)]
#[allow(clippy::double_parens)]
#[allow(non_snake_case)]
#[allow(clippy::unused_unit)]
#[allow(unused_variables)]
#[allow(clippy::too_many_arguments)]
pub fn evaluate<E: EvalAtRow>(
[read_u_32_input]: [E::F; 1],
low_16_bits_col0: E::F,
high_16_bits_col1: E::F,
low_7_ms_bits_col2: E::F,
high_14_ms_bits_col3: E::F,
high_5_ms_bits_col4: E::F,
id_col5: E::F,
common_lookup_elements: &relations::CommonLookupElements,
eval: &mut E,
) -> [E::F; 0] {
VerifyU32::evaluate(
[
read_u_32_input.clone(),
low_16_bits_col0.clone(),
high_16_bits_col1.clone(),
],
low_7_ms_bits_col2.clone(),
high_14_ms_bits_col3.clone(),
high_5_ms_bits_col4.clone(),
id_col5.clone(),
common_lookup_elements,
eval,
);
[]
}
}