aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/gfpmath_test.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/doc/examples/gfpmath_test.cpp b/doc/examples/gfpmath_test.cpp
index bfa2796cc..f2225a134 100644
--- a/doc/examples/gfpmath_test.cpp
+++ b/doc/examples/gfpmath_test.cpp
@@ -672,18 +672,11 @@ int main()
test_turn_on_sp_red_mul();
test_bi_div_even();
test_bi_div_odd();
- test_deep_montgm();
- test_gfp_div_small_numbers();
test_gfp_basics();
test_gfp_addSubNegate();
- test_gfp_mult();
- test_gfp_div();
test_gfp_add();
test_gfp_sub();
- test_more_gfp_div();
test_gfp_mult_u32bit();
- test_gfp_shared_vals();
- test_gfpel_ass_op();
test_gfp_swap();
test_inv_in_place();
test_op_eq();
@@ -691,5 +684,16 @@ int main()
test_bi_bit_access();
test_sec_mod_mul();
+ test_deep_montgm();
+
+ std::cout << "\nrest\n";
+
+ test_gfp_div_small_numbers();
+ test_gfp_mult();
+ test_gfp_div();
+ test_more_gfp_div();
+ test_gfp_shared_vals();
+ test_gfpel_ass_op();
+
std::cout << "\ndone\n";
}