# HG changeset patch
# User Jeroen Demeyer <jdemeyer@cage.ugent.be>
# Date 1288290081 -7200
# Node ID bb19c86dc8a71f6e8bdbf23c08a322e23bd84e99
# Parent f667e86a25fbe7138d4933ecf9b972ba8f40087d
#10191: Create a deliberate Sphinx warning
diff -r f667e86a25fb -r bb19c86dc8a7 sage/rings/arith.py
a
|
b
|
|
57 | 57 | then ``None`` wil be returned. If ``proof=True`` then the result is returned |
58 | 58 | only if it can be proved correct (i.e. the only possible minimal polynomial |
59 | 59 | satisfying the height bound, or no such polynomial exists). Otherwise a |
60 | | ``ValueError`` is raised indicating that higher precision is required. |
| 60 | ``ValueError`` is raised indicating that higher precision is required:: |
| 61 | |
| 62 | foo bar |
61 | 63 | |
62 | 64 | ALGORITHM: Uses LLL for real/complex inputs, PARI C-library algdep command otherwise. |
63 | 65 | |