Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ parallel = ["rayon", "ark-ff/parallel", "ark-crypto-primitives/parallel"]

[patch.crates-io]
ark-std = { git = "https://github.com/arkworks-rs/std" }
ark-crypto-primitives = { git = "https://github.com/intx4/crypto-primitives" }
ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives" }
ark-test-curves = { git = "https://github.com/arkworks-rs/algebra" }
ark-ff = { git = "https://github.com/arkworks-rs/algebra" }
ark-poly = { git = "https://github.com/arkworks-rs/algebra" }
Expand Down
1 change: 1 addition & 0 deletions src/poly_utils/bs08.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ mod tests {

use super::*;
use crate::crypto::fields::Field64 as TestField;
use ark_ff::AdditiveGroup;

This comment was marked as resolved.


fn test_bivariate(
poly: &DensePolynomial<TestField>,
Expand Down
1 change: 1 addition & 0 deletions src/poly_utils/interpolation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ mod tests {
use super::*;
use crate::{crypto::fields::Field64 as TestField, domain::Domain};
use ark_poly::domain::EvaluationDomain;
use ark_ff::AdditiveGroup;

#[test]
fn test_ans_polynomial() {
Expand Down