# HG changeset patch
# User Robert Miller <rlm@rlmiller.org>
# Date 1279099816 25200
# Node ID 8ce0e6491780bb845a4af4baf0a6b30d91630f48
# Parent 9fbc81638a3fc7df8866a1e2b3957eea44ac4d7f
#9494 - add a doctest to benchmark.py
diff -r 9fbc81638a3f -r 8ce0e6491780 sage/tests/benchmark.py
a
|
b
|
|
1952 | 1952 | * Singular (i.e., Sage) does shockingly well. |
1953 | 1953 | * mathematica is sometimes amazing. |
1954 | 1954 | * macaulay2 is also quite bad (though not as bad as maple). |
| 1955 | |
| 1956 | EXAMPLE:: |
| 1957 | |
| 1958 | sage: from sage.tests.benchmark import mpoly_all |
| 1959 | sage: mpoly_all() # not tested |
| 1960 | <BLANKLINE> |
| 1961 | ... |
| 1962 | ...System min avg max trials cpu or wall |
| 1963 | ... |
| 1964 | * sage... |
| 1965 | |
1955 | 1966 | """ |
1956 | 1967 | systems = ['sage', 'magma', 'mathematica', 'macaulay2'] |
1957 | 1968 | if include_maple: |