Skip to content

Commit 40e46fb

Browse files
committed
feat: add zeromorph, new unipoly, new mle, and more
1 parent c318dff commit 40e46fb

23 files changed

+7725
-1891
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The main files showcasing our work are as follows (in the `univarization/src` fo
6060
- `fftunipoly.rs`: FFT functions needed on polynomial commitments
6161
- `snark.rs`: implementation of a Spartan like proving system
6262

63-
We use ark_bn254, ark_std, ark_ff and ark_poly in our implementations.
63+
We use ark_bn254, ark_std and ark_ff in our implementations.
6464

6565
| File | Blank | Comment | Code |
6666
| -------------- | ----- | ------- | ---- |

univarization/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ ark-ff = { version = "0.3", default-features = false }
1111
ark-poly = { version = "0.3" }
1212
ark-poly-commit = { version = "0.3" }
1313
ark-bn254 = { version = "0.3.0" }
14-
merlin = { version = "3.0", default-features = false }
1514
sha3 = { version = "0.10", default-features = false }
16-
15+
ff = { version = "0.13" , features = ["derive"]}
1716
log = { version = "0.4" }
1817
env_logger = { version = "0.10" }

univarization/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010

1111
## TODOs
1212

13-
- unipoly coeffs should be [f0, f1, ..., fn]
14-
- more comments
15-
- protocol description
13+
- unipoly coeffs should be [f0, f1, ..., fn]
14+
- more comments, protocol description
1615
- clean up the space
1716
- towards zeromorph
1817
- batch kzg10 proofs

0 commit comments

Comments
 (0)