Skip to content

Commit

Permalink
update to main
Browse files Browse the repository at this point in the history
  • Loading branch information
tamirhemo committed Feb 8, 2024
2 parents 235afd8 + 86d13dd commit c8b04bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion air/src/air.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub trait Air<AB: AirBuilder>: BaseAir<AB::F> {
pub trait AirBuilder: Sized {
type F: Field;

type Expr: AbstractField<F = Self::F>
type Expr: AbstractField
+ From<Self::F>
+ Add<Self::Var, Output = Self::Expr>
+ Add<Self::F, Output = Self::Expr>
Expand Down
1 change: 1 addition & 0 deletions field/src/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ pub trait PrimeField32: PrimeField64 {

pub trait AbstractExtensionField<Base: AbstractField>:
AbstractField
+ From<Base>
+ Add<Base, Output = Self>
+ AddAssign<Base>
+ Sub<Base, Output = Self>
Expand Down

0 comments on commit c8b04bf

Please sign in to comment.