Initial SymPy benchmark suite
[sympy.git] / sympy / __init__.py
blob80283967aee2f2e37e2d7d549d0d1586c7e4f5a3
1 """
2 SymPy is a Python library for symbolic mathematics. It aims to become a
3 full-featured computer algebra system (CAS) while keeping the code as simple as
4 possible in order to be comprehensible and easily extensible. SymPy is written
5 entirely in Python and does not require any external libraries, except
6 optionally for plotting support.
8 See the webpage for more information and documentation:
10 http://code.google.com/p/sympy/
11 """
13 __version__ = "0.6.2-hg"
15 import symbol as stdlib_symbol
16 from sympy.core import *
18 from polys import *
19 from series import *
20 from functions import *
21 from ntheory import *
22 from concrete import *
23 from simplify import *
24 from solvers import *
25 from matrices import *
26 from geometry import *
27 from utilities import *
28 from integrals import *
29 # This module is slow to import:
30 #from physics import units
31 from plotting import Plot, textplot
32 from printing import pretty, pretty_print, pprint, pprint_use_unicode, \
33 pprint_try_use_unicode, print_gtk, print_tree
34 from printing import latex, preview, view, pngview, pdfview, dviview
35 from printing import python, print_python, srepr, sstr, sstrrepr
36 from polynomials import factor
38 evalf._create_evalf_table()
40 # This is slow to import:
41 #import abc