Skip to content

Commit

Permalink
Update vectorext.go
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdanbear committed Dec 20, 2024
1 parent 1fdaaae commit 178b82d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prover/maths/common/smartvectors/vectorext/vectorext.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func Reverse(v []fext.Element) {
func Repeat(x fext.Element, n int) []fext.Element {
res := make([]fext.Element, n)
for i := range res {
res[i] = x
res[i].Set(&x)
}
return res
}
Expand Down

0 comments on commit 178b82d

Please sign in to comment.