Skip to content

Commit

Permalink
finally
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas committed Aug 1, 2024
1 parent 292f713 commit 6ed0bb5
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, _)) => {
let rhs: Felt<_> = builder.eval(rhs.clone().clone());
let sym: SymbolicFelt<_> = rhs.as_ref().clone();
let rhs: Felt<_> = builder.eval(sym);
builder.push(DslIr::SubEF(*self, *lhs, rhs));
}
(SymbolicExt::Val(lhs, _), rhs) => {
Expand Down

0 comments on commit 6ed0bb5

Please sign in to comment.