| 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)')
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.