Running doctests with ID 2020-09-03-16-41-07-d49d85b1. Git branch: develop Using --optional=build,dochtml,dot2tex,fricas,libsemigroups,memlimit,sage Doctesting 1 file. sage -t --long --warn-long 58.4 --random-seed=0 src/sage/schemes/hyperelliptic_curves/monsky_washnitzer.py Killed due to abort ********************************************************************** Tests run before process (pid=274215) failed: sage: B. = PolynomialRing(Integers(125)) ## line 105 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 106 ## sage: R ## line 107 ## SpecialCubicQuotientRing over Ring of integers modulo 125 with polynomial T = x^3 + 124*x + 94 sage: x, T = R.gens() ## line 112 ## sage: x ## line 113 ## (0) + (1)*x + (0)*x^2 sage: T ## line 115 ## (T) + (0)*x + (0)*x^2 sage: R(7) ## line 120 ## (7) + (0)*x + (0)*x^2 sage: A = R.poly_ring() ## line 125 ## sage: A ## line 126 ## Univariate Polynomial Ring in T over Ring of integers modulo 125 sage: z = A.gen() ## line 128 ## sage: R.create_element(z^2, z+1, 3) ## line 129 ## (T^2) + (T + 1)*x + (3)*x^2 sage: x^3 ## line 134 ## (T + 31) + (1)*x + (0)*x^2 sage: 3 * x**15 * T**2 + x - T ## line 136 ## (3*T^7 + 90*T^6 + 110*T^5 + 20*T^4 + 58*T^3 + 26*T^2 + 124*T) + (15*T^6 + 110*T^5 + 35*T^4 + 63*T^2 + 1)*x + (30*T^5 + 40*T^4 + 8*T^3 + 38*T^2)*x^2 sage: x^10 ## line 141 ## (3*T^2 + 61*T + 8) + (T^3 + 93*T^2 + 12*T + 40)*x + (3*T^2 + 61*T + 9)*x^2 sage: (x^10).coeffs() ## line 143 ## [[8, 61, 3, 0], [40, 12, 93, 1], [9, 61, 3, 0]] sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 151 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 167 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 168 ## sage: R ## line 169 ## SpecialCubicQuotientRing over Ring of integers modulo 125 with polynomial T = x^3 + 124*x + 94 sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 + 2*t^2 - t + B(1/4)) ## line 174 ## sage: B. = PolynomialRing(Integers(10)) ## line 181 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + 1) ## line 182 ## sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 186 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 231 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 232 ## sage: print(R) ## line 233 ## SpecialCubicQuotientRing over Ring of integers modulo 125 with polynomial T = x^3 + 124*x + 94 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 235 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 246 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 247 ## sage: R.poly_ring() ## line 248 ## Univariate Polynomial Ring in T over Ring of integers modulo 125 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 250 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 265 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 266 ## sage: x, T = R.gens() ## line 267 ## sage: x ## line 268 ## (0) + (1)*x + (0)*x^2 sage: T ## line 270 ## (T) + (0)*x + (0)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 272 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 297 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 298 ## sage: A, z = R.poly_ring().objgen() ## line 299 ## sage: R.create_element(z^2, z+1, 3) ## line 300 ## (T^2) + (T + 1)*x + (3)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 302 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 309 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 310 ## sage: R(3) ## line 311 ## (3) + (0)*x + (0)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 313 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 320 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 321 ## sage: R._coerce_impl(3) ## line 322 ## (3) + (0)*x + (0)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 324 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 353 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 354 ## sage: from sage.schemes.hyperelliptic_curves.monsky_washnitzer import SpecialCubicQuotientRingElement ## line 355 ## sage: SpecialCubicQuotientRingElement(R, 2, 3, 4) ## line 356 ## (2) + (3)*x + (4)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 358 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 382 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 383 ## sage: p = R.create_element(t, t^2 - 2, 3) ## line 384 ## sage: p.coeffs() ## line 385 ## [[0, 1, 0], [123, 0, 1], [3, 0, 0]] sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 387 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 399 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 400 ## sage: x, T = R.gens() ## line 401 ## sage: not x ## line 402 ## False sage: not T ## line 404 ## False sage: not R.create_element(0, 0, 0) ## line 406 ## True sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 408 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 417 ## sage: x, t = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)).gens() ## line 418 ## sage: x == t ## line 419 ## False sage: x == x ## line 421 ## True sage: x == x + x - x ## line 423 ## True sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 425 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 432 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 433 ## sage: x, T = R.gens() ## line 434 ## sage: x + T*x - 2*T^2 ## line 435 ## (123*T^2) + (T + 1)*x + (0)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 437 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 444 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 445 ## sage: x, T = R.gens() ## line 446 ## sage: f = x + T*x - 2*T^2 ## line 447 ## sage: latex(f) ## line 448 ## (123 T^{2}) + (T + 1)x + (0)x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 450 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 458 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 459 ## sage: f = R.create_element(2, t, t^2 - 3) ## line 460 ## sage: g = R.create_element(3 + t, -t, t) ## line 461 ## sage: f + g ## line 462 ## (T + 5) + (0)*x + (T^2 + T + 122)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 464 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 475 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 476 ## sage: f = R.create_element(2, t, t^2 - 3) ## line 477 ## sage: g = R.create_element(3 + t, -t, t) ## line 478 ## sage: f - g ## line 479 ## (124*T + 124) + (2*T)*x + (T^2 + 124*T + 122)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 481 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 494 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 495 ## sage: f = R.create_element(2, t, t^2 - 3) ## line 496 ## sage: f ## line 497 ## (2) + (T)*x + (T^2 + 122)*x^2 sage: f.shift(1) ## line 499 ## (2*T) + (T^2)*x + (T^3 + 122*T)*x^2 sage: f.shift(2) ## line 501 ## (2*T^2) + (T^3)*x + (T^4 + 122*T^2)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 503 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 522 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 523 ## sage: x, T = R.gens() ## line 524 ## sage: f = R.create_element(2, t, t^2 - 3) ## line 525 ## sage: f ## line 526 ## (2) + (T)*x + (T^2 + 122)*x^2 sage: f.scalar_multiply(2) ## line 528 ## (4) + (2*T)*x + (2*T^2 + 119)*x^2 sage: f.scalar_multiply(t) ## line 530 ## (2*T) + (T^2)*x + (T^3 + 122*T)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 532 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 546 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 547 ## sage: x, T = R.gens() ## line 548 ## sage: f = R.create_element(1 + 2*t + 3*t^2, 4 + 7*t + 9*t^2, 3 + 5*t + 11*t^2) ## line 552 ## sage: f.square() ## line 553 ## (73*T^5 + 16*T^4 + 38*T^3 + 39*T^2 + 70*T + 120) + (121*T^5 + 113*T^4 + 73*T^3 + 8*T^2 + 51*T + 61)*x + (18*T^4 + 60*T^3 + 22*T^2 + 108*T + 31)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 555 ## 0 sage: B. = PolynomialRing(Integers(125)) ## line 562 ## sage: R = monsky_washnitzer.SpecialCubicQuotientRing(t^3 - t + B(1/4)) ## line 563 ## sage: x, T = R.gens() ## line 564 ## sage: f = R.create_element(1 + 2*t + 3*t^2, 4 + 7*t + 9*t^2, 3 + 5*t + 11*t^2) ## line 568 ## sage: g = R.create_element(4 + 3*t + 7*t^2, 2 + 3*t + t^2, 8 + 4*t + 6*t^2) ## line 569 ## sage: f * g ## line 570 ## (65*T^5 + 27*T^4 + 33*T^3 + 75*T^2 + 120*T + 57) + (66*T^5 + T^4 + 123*T^3 + 95*T^2 + 24*T + 50)*x + (45*T^4 + 75*T^3 + 37*T^2 + 2*T + 52)*x^2 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 572 ## 0 sage: from sage.schemes.hyperelliptic_curves.monsky_washnitzer import transpose_list ## line 645 ## sage: L = [[1, 2], [3, 4], [5, 6]] ## line 646 ## sage: transpose_list(L) ## line 647 ## [[1, 3, 5], [2, 4, 6]] sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 649 ## 0 sage: t = polygen(QQ,'t') ## line 675 ## sage: from sage.schemes.hyperelliptic_curves.monsky_washnitzer import helper_matrix ## line 676 ## sage: helper_matrix(t**3-4*t-691) ## line 677 ## [ 64/12891731 -16584/12891731 4297329/12891731] [ 6219/12891731 -32/12891731 8292/12891731] [ -24/12891731 6219/12891731 -32/12891731] sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 681 ## 0 sage: from sage.schemes.hyperelliptic_curves.monsky_washnitzer import lift ## line 712 ## sage: l = lift(Qp(13)(131)); l ## line 713 ## 131 sage: l.parent() ## line 715 ## Integer Ring sage: x=PowerSeriesRing(Qp(17),'x').gen() ## line 718 ## sage: l = lift(4+5*x+17*x**6); l ## line 719 ## 4 + 5*t + 17*t^6 sage: l.parent() ## line 721 ## Power Series Ring in t over Rational Field sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 723 ## 0 sage: R. = Integers(5^3)['x'] ## line 753 ## sage: Q = x^3 - x + R(1/4) ## line 754 ## sage: coeffs = [[10, 15, 20], [1, 2, 3], [4, 5, 6], [7, 8, 9]] ## line 755 ## sage: coeffs = [[R.base_ring()(a) for a in row] for row in coeffs] ## line 756 ## sage: monsky_washnitzer.reduce_negative(Q, 5, coeffs, 3) ## line 757 ## sage: coeffs[3] ## line 758 ## [28, 52, 9] sage: R. = Integers(7^3)['x'] ## line 763 ## sage: Q = x^3 - x + R(1/4) ## line 764 ## sage: coeffs = [[7, 14, 21], [1, 2, 3], [4, 5, 6], [7, 8, 9]] ## line 765 ## sage: coeffs = [[R.base_ring()(a) for a in row] for row in coeffs] ## line 766 ## sage: monsky_washnitzer.reduce_negative(Q, 7, coeffs, 3) ## line 767 ## sage: coeffs[3] ## line 768 ## [245, 332, 9] sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 770 ## 0 sage: R. = Integers(5^3)['x'] ## line 854 ## sage: Q = x^3 - x + R(1/4) ## line 855 ## sage: coeffs = [[1, 2, 3], [10, 15, 20]] ## line 859 ## sage: coeffs = [[R.base_ring()(a) for a in row] for row in coeffs] ## line 860 ## sage: monsky_washnitzer.reduce_positive(Q, 5, coeffs, 0) ## line 861 ## sage: coeffs[0] ## line 862 ## [16, 102, 88] sage: coeffs = [[9, 8, 7], [10, 15, 20]] ## line 867 ## sage: coeffs = [[R.base_ring()(a) for a in row] for row in coeffs] ## line 868 ## sage: monsky_washnitzer.reduce_positive(Q, 5, coeffs, 0) ## line 869 ## sage: coeffs[0] ## line 870 ## [24, 108, 92] sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 872 ## 0 sage: R. = Integers(5^3)['x'] ## line 946 ## sage: Q = x^3 - x + R(1/4) ## line 947 ## sage: coeffs = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] ## line 948 ## sage: coeffs = [[R.base_ring()(a) for a in row] for row in coeffs] ## line 949 ## sage: monsky_washnitzer.reduce_zero(Q, coeffs, 1) ## line 950 ## sage: coeffs[1] ## line 951 ## [6, 5, 0] sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 953 ## 0 sage: R. = Integers(5^3)['x'] ## line 1005 ## sage: Q = x^3 - x + R(1/4) ## line 1006 ## sage: coeffs = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] ## line 1007 ## sage: coeffs = [[R.base_ring()(a) for a in row] for row in coeffs] ## line 1008 ## sage: monsky_washnitzer.reduce_all(Q, 5, coeffs, 1) ## line 1009 ## (21, 106) sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 1011 ## 0 sage: from sage.schemes.hyperelliptic_curves.monsky_washnitzer import frobenius_expansion_by_newton ## line 1088 ## sage: R. = Integers(5^3)['x'] ## line 1089 ## sage: Q = x^3 - x + R(1/4) ## line 1090 ## sage: frobenius_expansion_by_newton(Q,5,3) ## line 1091 ## ((25*T^5 + 75*T^3 + 100*T^2 + 100*T + 100) + (5*T^6 + 80*T^5 + 100*T^3 + 25*T + 50)*x + (55*T^5 + 50*T^4 + 75*T^3 + 25*T^2 + 25*T + 25)*x^2, (5*T^8 + 15*T^7 + 95*T^6 + 10*T^5 + 25*T^4 + 25*T^3 + 100*T^2 + 50) + (65*T^7 + 55*T^6 + 70*T^5 + 100*T^4 + 25*T^2 + 100*T)*x + (15*T^6 + 115*T^5 + 75*T^4 + 100*T^3 + 50*T^2 + 75*T + 75)*x^2, 7) sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 1097 ## 0 sage: from sage.schemes.hyperelliptic_curves.monsky_washnitzer import frobenius_expansion_by_series ## line 1276 ## sage: R. = Integers(5^3)['x'] ## line 1277 ## sage: Q = x^3 - x + R(1/4) ## line 1278 ## sage: frobenius_expansion_by_series(Q,5,3) ## line 1279 ## ((25*T^5 + 75*T^3 + 100*T^2 + 100*T + 100) + (5*T^6 + 80*T^5 + 100*T^3 + 25*T + 50)*x + (55*T^5 + 50*T^4 + 75*T^3 + 25*T^2 + 25*T + 25)*x^2, (5*T^8 + 15*T^7 + 95*T^6 + 10*T^5 + 25*T^4 + 25*T^3 + 100*T^2 + 50) + (65*T^7 + 55*T^6 + 70*T^5 + 100*T^4 + 25*T^2 + 100*T)*x + (15*T^6 + 115*T^5 + 75*T^4 + 100*T^3 + 50*T^2 + 75*T + 75)*x^2, 7) sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 1285 ## 0 sage: from sage.schemes.hyperelliptic_curves.monsky_washnitzer import adjusted_prec ## line 1356 ## sage: adjusted_prec(5,2) ## line 1357 ## 3 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 1359 ## 0 sage: p = 5 ## line 1418 ## sage: prec = 3 ## line 1419 ## sage: M = monsky_washnitzer.adjusted_prec(p, prec); M ## line 1420 ## 4 sage: R. = PolynomialRing(Integers(p**M)) ## line 1422 ## sage: A = monsky_washnitzer.matrix_of_frobenius(x^3 - x + R(1/4), p, M) ## line 1423 ## sage: A ## line 1424 ## [340 62] [ 70 533] sage: B = A.change_ring(Integers(p**prec)) ## line 1430 ## sage: B ## line 1431 ## [90 62] [70 33] sage: B.det() ## line 1437 ## 5 sage: B.trace() ## line 1439 ## 123 sage: EllipticCurve([-1, 1/4]).ap(5) ## line 1441 ## -2 sage: A = monsky_washnitzer.matrix_of_frobenius(x^3 - x + R(1/4), p, M, -2) ## line 1446 ## sage: A ## line 1448 ## [ 90 62] [320 533] sage: A.change_ring(Integers(p**prec)) ## line 1456 ## [90 62] [70 33] sage: p = 5 ## line 1462 ## sage: prec = 1 ## line 1463 ## sage: M = monsky_washnitzer.adjusted_prec(p, prec) ## line 1464 ## sage: R. = PolynomialRing(Integers(p**M)) ## line 1465 ## sage: A = monsky_washnitzer.matrix_of_frobenius(x^3 - x + R(1/4), p, M) ## line 1466 ## sage: A.change_ring(Integers(p)) ## line 1467 ## [0 2] [0 3] sage: p = 11 ## line 1474 ## sage: prec = 3 ## line 1475 ## sage: M = monsky_washnitzer.adjusted_prec(p, prec) ## line 1476 ## sage: R. = PolynomialRing(Integers(p**M)) ## line 1477 ## sage: A = monsky_washnitzer.matrix_of_frobenius(x^3 + 7*x + 8, p, M) ## line 1478 ## sage: A.change_ring(Integers(p**prec)) ## line 1479 ## [1144 176] [ 847 185] sage: A = monsky_washnitzer.matrix_of_frobenius(x^3 + 7*x + 8, p, M, -2) ## line 1492 ## sage: A.change_ring(Integers(p**prec)) ## line 1493 ## [1144 176] [ 847 185] sage: p = 10007 ## line 1501 ## sage: prec = 2 ## line 1502 ## sage: M = monsky_washnitzer.adjusted_prec(p, prec) ## line 1503 ## sage: R. = PolynomialRing(Integers(p**M)) ## line 1504 ## sage: A = monsky_washnitzer.matrix_of_frobenius( # long time x^3 - x + R(1/4), p, M) # long time ## line 1505 ## sage: B = A.change_ring(Integers(p**prec)); B # long time ## line 1507 ## [74311982 57996908] [95877067 25828133] sage: B.det() # long time ## line 1510 ## 10007 sage: B.trace() # long time ## line 1512 ## 66 sage: EllipticCurve([-1, 1/4]).ap(10007) # long time ## line 1514 ## 66 sage: p = 5 ## line 1519 ## sage: prec = 300 ## line 1520 ## sage: M = monsky_washnitzer.adjusted_prec(p, prec) ## line 1521 ## sage: R. = PolynomialRing(Integers(p**M)) ## line 1522 ## sage: A = monsky_washnitzer.matrix_of_frobenius( # long time x^3 - x + R(1/4), p, M) # long time ## line 1523 ## sage: B = A.change_ring(Integers(p**prec)) # long time ## line 1525 ## sage: B.det() # long time ## line 1526 ## 5 sage: -B.trace() # long time ## line 1528 ## 2 sage: EllipticCurve([-1, 1/4]).ap(5) # long time ## line 1530 ## -2 sage: p = 5 ## line 1535 ## sage: max_prec = 60 ## line 1536 ## sage: M = monsky_washnitzer.adjusted_prec(p, max_prec) ## line 1537 ## sage: R. = PolynomialRing(Integers(p**M)) ## line 1538 ## sage: A = monsky_washnitzer.matrix_of_frobenius(x^3 - x + R(1/4), p, M) # long time ## line 1539 ## sage: A = A.change_ring(Integers(p**max_prec)) # long time ## line 1540 ## sage: result = [] # long time ## line 1541 ## sage: for prec in range(1, max_prec): # long time M = monsky_washnitzer.adjusted_prec(p, prec) # long time R. = PolynomialRing(Integers(p^M),'x') # long time B = monsky_washnitzer.matrix_of_frobenius( # long time x^3 - x + R(1/4), p, M) # long time B = B.change_ring(Integers(p**prec)) # long time result.append(B == A.change_ring( # long time Integers(p**prec))) # long time ## line 1542 ## sage: result == [True] * (max_prec - 1) # long time ## line 1550 ## True sage: p = 11 ## line 1561 ## sage: prec = 3 ## line 1562 ## sage: M = monsky_washnitzer.adjusted_prec(p, prec) ## line 1563 ## sage: S. = PowerSeriesRing(Integers(p**M), default_prec=4) ## line 1564 ## sage: a = 7 + t + 3*t^2 ## line 1565 ## sage: b = 8 - 6*t + 17*t^2 ## line 1566 ## sage: R. = PolynomialRing(S) ## line 1567 ## sage: Q = x**3 + a*x + b ## line 1568 ## sage: A = monsky_washnitzer.matrix_of_frobenius(Q, p, M) # long time ## line 1569 ## sage: B = A.change_ring(PowerSeriesRing(Integers(p**prec), 't', default_prec=4)) # long time ## line 1570 ## sage: B # long time ## line 1571 ## [1144 + 264*t + 841*t^2 + 1025*t^3 + O(t^4) 176 + 1052*t + 216*t^2 + 523*t^3 + O(t^4)] [ 847 + 668*t + 81*t^2 + 424*t^3 + O(t^4) 185 + 341*t + 171*t^2 + 642*t^3 + O(t^4)] sage: B.det() # long time ## line 1582 ## 11 + 484*t^2 + 451*t^3 + O(t^4) sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 1590 ## 0 sage: p = 5 ## line 1766 ## sage: prec = 3 ## line 1767 ## sage: R. = QQ['x'] ## line 1768 ## sage: A,f = monsky_washnitzer.matrix_of_frobenius_hyperelliptic(x^5 - 2*x + 3, p, prec) ## line 1769 ## ------------------------------------------------------------------------ /usr/local/sage-9/local/lib/python3.7/site-packages/cysignals/signals.cpython-37m-x86_64-linux-gnu.so(+0x8cf8)[0x7fe90f26fcf8] /usr/local/sage-9/local/lib/python3.7/site-packages/cysignals/signals.cpython-37m-x86_64-linux-gnu.so(+0x8d99)[0x7fe90f26fd99] /usr/local/sage-9/local/lib/python3.7/site-packages/cysignals/signals.cpython-37m-x86_64-linux-gnu.so(+0xb27b)[0x7fe90f27227b] /lib/x86_64-linux-gnu/libc.so.6(+0x3be30)[0x7fe9104dae30] /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x141)[0x7fe9104dadb1] /lib/x86_64-linux-gnu/libc.so.6(abort+0x123)[0x7fe9104c4537] /usr/lib/x86_64-linux-gnu/libflint-2.6.3.so(+0x838fd)[0x7fe90466e8fd] /usr/lib/x86_64-linux-gnu/libflint-2.6.3.so(flint_throw+0xf3)[0x7fe90466e9f3] /usr/lib/x86_64-linux-gnu/libflint-2.6.3.so(_nmod_poly_rem_q1+0xc1)[0x7fe904755741] /usr/lib/x86_64-linux-gnu/libflint-2.6.3.so(_nmod_poly_rem+0x165)[0x7fe904754a75] /usr/lib/x86_64-linux-gnu/libflint-2.6.3.so(_nmod_poly_gcd_euclidean+0x60)[0x7fe90473fd00] /usr/lib/x86_64-linux-gnu/libflint-2.6.3.so(nmod_poly_gcd+0xc5)[0x7fe90473fba5] /usr/local/sage-9/local/lib/python3.7/site-packages/sage/rings/polynomial/polynomial_zmod_flint.cpython-37m-x86_64-linux-gnu.so(+0xf6bc)[0x7fe8c2dad6bc] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyMethodDef_RawFastCallDict+0x301)[0x7fe9107279d1] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x9a21b)[0x7fe91072e21b] /usr/local/sage-9/local/lib/python3.7/site-packages/sage/structure/element.cpython-37m-x86_64-linux-gnu.so(+0x10d59)[0x7fe90f919d59] /usr/local/sage-9/local/lib/python3.7/site-packages/sage/structure/element.cpython-37m-x86_64-linux-gnu.so(+0x144d6)[0x7fe90f91d4d6] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyObject_FastCallKeywords+0xd7)[0x7fe910727407] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68910)[0x7fe9106fc910] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x5e91)[0x7fe910702b91] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallKeywords+0x8b)[0x7fe910726d4b] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x3873)[0x7fe910700573] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallDict+0x1c7)[0x7fe910726bb7] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyObject_Call_Prepend+0xcd)[0x7fe910727d8d] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0xedb9e)[0x7fe910781b9e] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0xe6d85)[0x7fe91077ad85] /usr/local/sage-9/local/lib/python3.7/site-packages/sage/misc/classcall_metaclass.cpython-37m-x86_64-linux-gnu.so(+0x8874)[0x7fe90f4fd874] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(PyCFunction_Call+0xf9)[0x7fe910728ec9] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x6f8e)[0x7fe910703c8e] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallDict+0x1c7)[0x7fe910726bb7] /usr/local/sage-9/local/lib/python3.7/site-packages/sage/misc/cachefunc.cpython-37m-x86_64-linux-gnu.so(+0x37f50)[0x7fe90f445f50] /usr/local/sage-9/local/lib/python3.7/site-packages/sage/misc/classcall_metaclass.cpython-37m-x86_64-linux-gnu.so(+0x94d4)[0x7fe90f4fe4d4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyObject_FastCallKeywords+0xd7)[0x7fe910727407] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68910)[0x7fe9106fc910] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x3873)[0x7fe910700573] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallKeywords+0x8b)[0x7fe910726d4b] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x5e91)[0x7fe910702b91] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(PyEval_EvalCodeEx+0x3e)[0x7fe9107efb5e] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(PyEval_EvalCode+0x1b)[0x7fe9107efb8b] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x1591ad)[0x7fe9107ed1ad] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyMethodDef_RawFastCallKeywords+0x295)[0x7fe910727225] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyCFunction_FastCallKeywords+0x28)[0x7fe910727318] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68bab)[0x7fe9106fcbab] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x3873)[0x7fe910700573] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallKeywords+0x8b)[0x7fe910726d4b] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallKeywords+0x8b)[0x7fe910726d4b] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallDict+0x1c7)[0x7fe910726bb7] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyObject_Call_Prepend+0xcd)[0x7fe910727d8d] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0xec816)[0x7fe910780816] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyObject_FastCallKeywords+0xd7)[0x7fe910727407] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68910)[0x7fe9106fc910] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x3873)[0x7fe910700573] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyObject_Call_Prepend+0xcd)[0x7fe910727d8d] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0xedb9e)[0x7fe910781b9e] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0xe6d85)[0x7fe91077ad85] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyObject_FastCallKeywords+0xd7)[0x7fe910727407] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68910)[0x7fe9106fc910] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x3873)[0x7fe910700573] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x5e91)[0x7fe910702b91] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x5e91)[0x7fe910702b91] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0x5e91)[0x7fe910702b91] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallKeywords+0x8b)[0x7fe910726d4b] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyFunction_FastCallKeywords+0x8b)[0x7fe910726d4b] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x676d3)[0x7fe9106fb6d3] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x68965)[0x7fe9106fc965] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalFrameDefault+0xda4)[0x7fe9106fdaa4] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_PyEval_EvalCodeWithName+0x93a)[0x7fe9107ef8da] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(PyEval_EvalCodeEx+0x3e)[0x7fe9107efb5e] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(PyEval_EvalCode+0x1b)[0x7fe9107efb8b] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(PyRun_FileExFlags+0xb1)[0x7fe910820151] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(PyRun_SimpleFileExFlags+0xeb)[0x7fe9108202db] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(+0x1ab9c7)[0x7fe91083f9c7] /usr/local/sage-9/local/lib/libpython3.7m.so.1.0(_Py_UnixMain+0x39)[0x7fe91083fbf9] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xea)[0x7fe9104c5cca] /usr/local/sage-9/local/bin/python3(_start+0x2a)[0x5563a2e7208a] ------------------------------------------------------------------------ Flint exception (Impossible inverse): Cannot invert modulo 5*0 Attaching gdb to process id 274215. Cannot find gdb installed GDB is not installed. Install gdb for enhanced tracebacks. ------------------------------------------------------------------------ Unhandled SIGABRT: An abort() occurred. This probably occurred because a *compiled* module has a bug in it and is not properly wrapped with sig_on(), sig_off(). Python will now terminate. ------------------------------------------------------------------------ ********************************************************************** ---------------------------------------------------------------------- sage -t --long --warn-long 58.4 --random-seed=0 src/sage/schemes/hyperelliptic_curves/monsky_washnitzer.py # Killed due to abort ---------------------------------------------------------------------- Total time for all tests: 4.6 seconds cpu time: 0.0 seconds cumulative wall time: 0.0 seconds Running doctests with ID 2020-09-03-16-41-14-44547531. Git branch: develop Using --optional=build,dochtml,dot2tex,fricas,libsemigroups,memlimit,sage Doctesting 1 file. sage -t --long --warn-long 58.4 --random-seed=0 src/sage/rings/complex_arb.pyx ********************************************************************** File "src/sage/rings/complex_arb.pyx", line 4576, in sage.rings.complex_arb.ComplexBall.elliptic_pi Failed example: CBF(2,3).elliptic_pi(CBF(1,1)) Expected: [0.27029997361983 +/- ...e-15] + [0.715676058329095 +/- ...e-16]*I Got: [0.2702999736198 +/- 4.51e-14] + [0.7156760583291 +/- 1.78e-14]*I ********************************************************************** File "src/sage/rings/complex_arb.pyx", line 4684, in sage.rings.complex_arb.ComplexBall.elliptic_pi_inc Failed example: n.elliptic_pi_inc(CBF.pi()/2, m) Expected: [0.8934793755173 +/- ...e-14] + [0.95707868710750 +/- ...e-15]*I Got: nan + nan*I ********************************************************************** File "src/sage/rings/complex_arb.pyx", line 4686, in sage.rings.complex_arb.ComplexBall.elliptic_pi_inc Failed example: n.elliptic_pi(m) Expected: [0.89347937551733 +/- ...e-15] + [0.95707868710750 +/- ...e-15]*I Got: [0.8934793755173 +/- 4.27e-14] + [0.9570786871075 +/- 9.91e-15]*I ********************************************************************** File "src/sage/rings/complex_arb.pyx", line 4691, in sage.rings.complex_arb.ComplexBall.elliptic_pi_inc Failed example: n.elliptic_pi_inc(CBF.pi()/2, m) Expected: [0.2969588746419 +/- ...e-14] + [1.3188795332738 +/- ...e-14]*I Got: nan + nan*I ********************************************************************** File "src/sage/rings/complex_arb.pyx", line 4693, in sage.rings.complex_arb.ComplexBall.elliptic_pi_inc Failed example: n.elliptic_pi(m) Expected: [0.29695887464189 +/- ...e-15] + [1.31887953327376 +/- ...e-15]*I Got: [0.2969588746419 +/- 3.79e-14] + [1.3188795332738 +/- 7.19e-14]*I ********************************************************************** File "src/sage/rings/complex_arb.pyx", line 4769, in sage.rings.complex_arb.ComplexBall.elliptic_rj Failed example: CBF(0,1).elliptic_rj(CBF(-1/2,1), CBF(-1,-1), CBF(2)) Expected: [1.004386756285733 +/- ...e-16] + [-0.2451626834391645 +/- ...e-17]*I Got: [1.00438675628573 +/- 6.85e-15] + [-0.24516268343916 +/- 8.11e-15]*I ********************************************************************** 3 items had failures: 1 of 2 in sage.rings.complex_arb.ComplexBall.elliptic_pi 4 of 10 in sage.rings.complex_arb.ComplexBall.elliptic_pi_inc 1 of 2 in sage.rings.complex_arb.ComplexBall.elliptic_rj [645 tests, 6 failures, 5.44 s] ---------------------------------------------------------------------- sage -t --long --warn-long 58.4 --random-seed=0 src/sage/rings/complex_arb.pyx # 6 doctests failed ---------------------------------------------------------------------- Total time for all tests: 5.6 seconds cpu time: 5.6 seconds cumulative wall time: 5.4 seconds Running doctests with ID 2020-09-03-16-41-23-addc9feb. Git branch: develop Using --optional=build,dochtml,dot2tex,fricas,libsemigroups,memlimit,sage Doctesting 1 file. sage -t --long --warn-long 58.4 --random-seed=0 src/sage/modules/fg_pid/fgp_module.py ********************************************************************** File "src/sage/modules/fg_pid/fgp_module.py", line 130, in sage.modules.fg_pid.fgp_module Failed example: y = f.lift(3*M1.0); y Expected: (0, 13) Got: (1, 0) ********************************************************************** File "src/sage/modules/fg_pid/fgp_module.py", line 1288, in sage.modules.fg_pid.fgp_module.FGP_Module_class.coordinate_vector Failed example: Q.coordinate_vector(-x, reduce=False) Expected: (0, -4) Got: (0, 8) ********************************************************************** File "src/sage/modules/fg_pid/fgp_module.py", line 1417, in sage.modules.fg_pid.fgp_module.FGP_Module_class.optimized Failed example: X Expected: [0 4 0] [0 1 0] [0 0 1] Got: [ 0 -8 0] [ 0 1 0] [ 0 0 1] ********************************************************************** 3 items had failures: 1 of 45 in sage.modules.fg_pid.fgp_module 1 of 23 in sage.modules.fg_pid.fgp_module.FGP_Module_class.coordinate_vector 1 of 11 in sage.modules.fg_pid.fgp_module.FGP_Module_class.optimized [396 tests, 3 failures, 3.12 s] ---------------------------------------------------------------------- sage -t --long --warn-long 58.4 --random-seed=0 src/sage/modules/fg_pid/fgp_module.py # 3 doctests failed ---------------------------------------------------------------------- Total time for all tests: 3.2 seconds cpu time: 3.1 seconds cumulative wall time: 3.1 seconds Running doctests with ID 2020-09-03-16-41-29-9f11ae4b. Git branch: develop Using --optional=build,dochtml,dot2tex,fricas,libsemigroups,memlimit,sage Doctesting 1 file. sage -t --long --warn-long 58.4 --random-seed=0 src/doc/en/developer/coding_in_other.rst [40 tests, 0.52 s] ---------------------------------------------------------------------- All tests passed! ---------------------------------------------------------------------- Total time for all tests: 0.6 seconds cpu time: 0.3 seconds cumulative wall time: 0.5 seconds Running doctests with ID 2020-09-03-16-41-33-ca06407a. Git branch: develop Using --optional=build,dochtml,dot2tex,fricas,libsemigroups,memlimit,sage Doctesting 1 file. sage -t --long --warn-long 58.4 --random-seed=0 src/doc/en/constructions/algebraic_geometry.rst ********************************************************************** File "src/doc/en/constructions/algebraic_geometry.rst", line 145, in doc.en.constructions.algebraic_geometry Failed example: print(L) Expected: [1]: _[1]=y _[2]=x ... Got: [1]: _[1]=y^2+y+1 _[2]=x+y [2]: _[1]=y^2+y+1 _[2]=x+1 [3]: _[1]=y^2+y+1 _[2]=x+y+1 [4]: _[1]=y^2+y+1 _[2]=x [5]: _[1]=y+1 _[2]=x^2+x+1 [6]: _[1]=y+1 _[2]=x+1 [7]: _[1]=y+1 _[2]=x [8]: _[1]=y _[2]=x^2+x+1 [9]: _[1]=y _[2]=x+1 [10]: _[1]=y _[2]=x ********************************************************************** 1 item had failures: 1 of 61 in doc.en.constructions.algebraic_geometry [52 tests, 1 failure, 0.73 s] ---------------------------------------------------------------------- sage -t --long --warn-long 58.4 --random-seed=0 src/doc/en/constructions/algebraic_geometry.rst # 1 doctest failed ---------------------------------------------------------------------- Total time for all tests: 0.8 seconds cpu time: 0.3 seconds cumulative wall time: 0.7 seconds Running doctests with ID 2020-09-03-16-41-37-5d1cecf6. Git branch: develop Using --optional=build,dochtml,dot2tex,fricas,libsemigroups,memlimit,sage Doctesting 1 file. sage -t --long --warn-long 58.4 --random-seed=0 src/sage/modules/free_module_morphism.py ********************************************************************** File "src/sage/modules/free_module_morphism.py", line 353, in sage.modules.free_module_morphism.FreeModuleMorphism.lift Failed example: f.lift([1/3]) Expected: (8, -16) Got: (20, -48) ********************************************************************** File "src/sage/modules/free_module_morphism.py", line 355, in sage.modules.free_module_morphism.FreeModuleMorphism.lift Failed example: f.lift([1/2]) Expected: (12, -24) Got: (30, -72) ********************************************************************** File "src/sage/modules/free_module_morphism.py", line 357, in sage.modules.free_module_morphism.FreeModuleMorphism.lift Failed example: f.lift([1/6]) Expected: (4, -8) Got: (10, -24) ********************************************************************** 1 item had failures: 3 of 22 in sage.modules.free_module_morphism.FreeModuleMorphism.lift [154 tests, 3 failures, 0.52 s] ---------------------------------------------------------------------- sage -t --long --warn-long 58.4 --random-seed=0 src/sage/modules/free_module_morphism.py # 3 doctests failed ---------------------------------------------------------------------- Total time for all tests: 0.6 seconds cpu time: 0.5 seconds cumulative wall time: 0.5 seconds Running doctests with ID 2020-09-03-16-41-40-58e793a6. Git branch: develop Using --optional=build,dochtml,dot2tex,fricas,libsemigroups,memlimit,sage Doctesting 1 file. sage -t --long --warn-long 58.4 --random-seed=0 src/sage/rings/real_arb.pyx ********************************************************************** File "src/sage/rings/real_arb.pyx", line 296, in sage.rings.real_arb.arb_to_mpfi Failed example: RIF(RBF(2)**(2**100)) # indirect doctest Expected: Traceback (most recent call last): ... ArithmeticError: Error converting arb to mpfi. Overflow? Got: [5.8756537891115869e1388255822130839282 .. +infinity] ********************************************************************** File "src/sage/rings/real_arb.pyx", line 1670, in sage.rings.real_arb.RealBall.mid Failed example: b.mid() Expected: Traceback (most recent call last): ... RuntimeError: unable to convert to MPFR (exponent out of range?) Got: +infinity ********************************************************************** 2 items had failures: 1 of 7 in sage.rings.real_arb.RealBall.mid 1 of 2 in sage.rings.real_arb.arb_to_mpfi [546 tests, 2 failures, 0.55 s] ---------------------------------------------------------------------- sage -t --long --warn-long 58.4 --random-seed=0 src/sage/rings/real_arb.pyx # 2 doctests failed ---------------------------------------------------------------------- Total time for all tests: 0.7 seconds cpu time: 0.6 seconds cumulative wall time: 0.6 seconds