Skip to content

Commit

Permalink
Div and Shr
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasgoergens committed Dec 12, 2024
1 parent 69117ca commit 42e4edf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ceno_zkvm/src/expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ use std::{
fmt::Display,
iter::{Product, Sum},
mem::MaybeUninit,
ops::{Add, AddAssign, Deref, Div, Mul, MulAssign, Neg, Shl, ShlAssign, Shr, ShrAssign, Sub, SubAssign},
ops::{
Add, AddAssign, Deref, Div, Mul, MulAssign, Neg, Shl, ShlAssign, Shr, ShrAssign, Sub,
SubAssign,
},
};

use ceno_emul::InsnKind;
Expand Down Expand Up @@ -759,7 +762,6 @@ impl<E: ExtensionField> Mul for Expression<E> {
}
}


macro_rules! div_instances {
(($($t:ty),*)) => {
$(
Expand Down

0 comments on commit 42e4edf

Please sign in to comment.