Skip to content

Commit

Permalink
clean: polynomial tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Autoparallel committed May 9, 2024
1 parent 3d4a928 commit 5fa09c4
Show file tree
Hide file tree
Showing 5 changed files with 309 additions and 106 deletions.
225 changes: 225 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ ark-bn254 ="0.4.0"
ark-poly ="0.4.0"
ark-ff ="0.4.0"
ark-ec ="0.4.0"

[dev-dependencies]
rstest ="0.19.0"
pretty_assertions="1.4.0"
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ use core::{
};

use rand::Rng;
#[cfg(test)] use rstest::{fixture, rstest};

pub use self::field::{gf_101::GF101, FiniteField};
use self::field::{gf_101::GF101, FiniteField};
Loading

0 comments on commit 5fa09c4

Please sign in to comment.