Skip to content

Commit

Permalink
remove verbose message
Browse files Browse the repository at this point in the history
  • Loading branch information
shamatar committed Jan 20, 2023
1 parent 6d0b16c commit 3aa6226
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/plonk/better_better_cs/cs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1434,12 +1434,12 @@ impl_assembly!{
self.individual_table_canonical_sorted_entries.insert(table_name.clone(), entries_as_arrays);
self.individual_table_entries_lookups.insert(table_name.clone(), entries_into_table_row);
let buffer_for_current_table = if let Some(mut buffer) = self.reusable_buffer_for_lookup_entries.pop(){
unsafe{
buffer.set_len(0);
};
buffer.clear();

buffer
}else{
println!("allocating new buffer for table {}", table_name);
// println!("allocating new buffer for table {}", table_name);

new_vec_with_allocator!(0)
};

Expand Down

0 comments on commit 3aa6226

Please sign in to comment.