privacy-scaling-explorations / halo2

https://privacy-scaling-explorations.github.io/halo2/
Other
201 stars 121 forks source link

Use vectors instead of slices for PI #353

Closed davidnevadoc closed 3 months ago

davidnevadoc commented 3 months ago

Description

Instances were being passed as a triple slice of field elements: &[&[&[F]]] in many functions. It has been replaced for &[Vec<Vec<F>>].

Related issues

Closes #265