Skip to content

Commit

Permalink
hm
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas committed Aug 1, 2024
1 parent ed7a602 commit 86926b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recursion/compiler/src/ir/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,8 @@ impl<F: Field, EF: ExtensionField<F>> Ext<F, EF> {
builder.push(DslIr::SubE(*self, *lhs, *rhs));
}
(SymbolicExt::Val(lhs, _), SymbolicExt::Base(rhs, _)) => {
builder.push(DslIr::SubEF(*self, *lhs, *rhs));
let rhs = builder.eval(rhs.clone());

Check failure on line 1045 in recursion/compiler/src/ir/types.rs

View workflow job for this annotation

GitHub Actions / Test (fast-experimental)

the trait bound `symbolic::SymbolicFelt<F>: From<Rc<symbolic::SymbolicFelt<F>>>` is not satisfied

Check failure on line 1045 in recursion/compiler/src/ir/types.rs

View workflow job for this annotation

GitHub Actions / Test (x86-64)

the trait bound `symbolic::SymbolicFelt<F>: From<Rc<symbolic::SymbolicFelt<F>>>` is not satisfied
builder.push(DslIr::SubEF(*self, *lhs, rhs));
}
(SymbolicExt::Val(lhs, _), rhs) => {
let rhs_value = Self::uninit(builder);
Expand Down

0 comments on commit 86926b3

Please sign in to comment.