Change test_rng import to ark-std

This commit is contained in:
ValarDragon
2020-12-11 19:49:55 -06:00
committed by Pratyush Mishra
parent b17b17efcc
commit 530d618cca
42 changed files with 84 additions and 58 deletions

View File

@@ -6,7 +6,8 @@ pub mod fields {
use rand::{self, SeedableRng};
use rand_xorshift::XorShiftRng;
use ark_ff::{test_rng, BitIteratorLE, Field, UniformRand};
use ark_ff::{BitIteratorLE, Field, UniformRand};
use ark_std::test_rng;
use ark_r1cs_std::prelude::*;
use ark_relations::r1cs::{ConstraintSystem, SynthesisError};
use ark_std::vec::Vec;