File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -884,18 +884,18 @@ TYPED_TEST(MontgomeryTest, BatchOperations) {
884884 std::vector<TypeParam> expected_add, expected_sub, expected_mul,
885885 expected_fma;
886886 TypeParam scalar =
887- TypeParam::ImportRandom (prng. get () , modulus_params.get ()).value ();
887+ TypeParam::ImportRandom (prng, modulus_params.get ()).value ();
888888 auto [scalar_constant, scalar_constant_barrett] =
889889 scalar.GetConstant (modulus_params.get ());
890890 std::vector<TypeParam> expected_add_scalar, expected_sub_scalar,
891891 expected_mul_scalar;
892892 for (size_t i = 0 ; i < length; i++) {
893893 a.push_back (
894- TypeParam::ImportRandom (prng. get () , modulus_params.get ()).value ());
894+ TypeParam::ImportRandom (prng, modulus_params.get ()).value ());
895895 b.push_back (
896- TypeParam::ImportRandom (prng. get () , modulus_params.get ()).value ());
896+ TypeParam::ImportRandom (prng, modulus_params.get ()).value ());
897897 c.push_back (
898- TypeParam::ImportRandom (prng. get () , modulus_params.get ()).value ());
898+ TypeParam::ImportRandom (prng, modulus_params.get ()).value ());
899899 auto [constant, constant_barrett] =
900900 b[i].GetConstant (modulus_params.get ());
901901 b_constant.push_back (constant);
You can’t perform that action at this time.
0 commit comments