Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
umadayal committed Nov 13, 2024
1 parent e60702f commit c9fc130
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ pub struct U256x2048MulCols<T> {

pub lo_ptr_memory: MemoryReadCols<T>,
pub hi_ptr_memory: MemoryReadCols<T>,

// Memory columns.
pub a_memory: [MemoryReadCols<T>; WORDS_FIELD_ELEMENT],
pub b_memory: [MemoryReadCols<T>; WORDS_FIELD_ELEMENT * 8],
Expand Down Expand Up @@ -136,7 +137,7 @@ impl<F: PrimeField32> MachineAir<F> for U256x2048MulChip {
cols.hi_ptr_memory
.populate(event.hi_ptr_memory, &mut new_byte_lookup_events);

// Populate memory columns.
// Populate memory columns.
for i in 0..WORDS_FIELD_ELEMENT {
cols.a_memory[i]
.populate(event.a_memory_records[i], &mut new_byte_lookup_events);
Expand Down

0 comments on commit c9fc130

Please sign in to comment.