1 | initial version |
The function get_systems from sage.misc.citation will tell you the backends used to evaluate some code. For example,
sage: from sage.misc.citation import get_systems sage: get_systems('sqrt(x)') ['MPFI', 'MPFR', 'GMP'] sage: get_systems('sqrt(3.4)') ['MPFR']
2 | No.2 Revision |
The function get_systems from sage.misc.citation will tell you the backends used to evaluate some code. For example,
sage: from sage.misc.citation import get_systems
sage: get_systems('sqrt(x)')
['MPFI', 'MPFR', 'GMP']
sage: get_systems('sqrt(3.4)')