@@ -1836,7 +1836,7 @@ def _test_fmpz_mod():
18361836 assert fmpz (test_y ) / F_test (test_x ) == (test_y * pow (test_x , - 1 , test_mod )) % test_mod
18371837 assert test_y / F_test (test_x ) == (test_y * pow (test_x , - 1 , test_mod )) % test_mod
18381838
1839- def test_fmpz_mod_dlog ():
1839+ def _test_fmpz_mod_dlog ():
18401840 from flint import fmpz , fmpz_mod_ctx
18411841
18421842 # Input modulus must be prime
@@ -1878,7 +1878,7 @@ def test_fmpz_mod_dlog():
18781878 x = g .discrete_log (a )
18791879 assert g ** x == a
18801880
1881- def test_fmpz_mod_poly ():
1881+ def _test_fmpz_mod_poly ():
18821882 from flint import fmpz_poly , fmpz_mod_poly , fmpz_mod_poly_ctx , fmpz_mod_ctx , fmpz
18831883
18841884 # fmpz_mod_poly_ctx tests
@@ -2295,7 +2295,7 @@ def test_fmpz_mod_poly():
22952295 assert raises (lambda : f .pow_trunc (- 1 , 5 ), ValueError )
22962296
22972297
2298- def test_fmpz_mod_mat ():
2298+ def _test_fmpz_mod_mat ():
22992299 c11 = flint .fmpz_mod_ctx (11 )
23002300 c13 = flint .fmpz_mod_ctx (13 )
23012301
@@ -4690,9 +4690,9 @@ def test_all_tests():
46904690 test_nmod_series ,
46914691
46924692 #test_fmpz_mod,
4693- test_fmpz_mod_dlog ,
4694- test_fmpz_mod_poly ,
4695- test_fmpz_mod_mat ,
4693+ # test_fmpz_mod_dlog,
4694+ # test_fmpz_mod_poly,
4695+ # test_fmpz_mod_mat,
46964696
46974697 test_division_scalar ,
46984698 test_division_poly ,
0 commit comments