Implemented crisscross algorithm for solving LP problems.
[sympycore.git] / sympycore / arithmetic / __init__.py
blob1f6815de0b3058bcf513eb886e271eea85eb13f8
1 """Low-level arithmetics support.
3 Arithmetic package provides:
5 * low-level number types ``mpq``, ``mpf``, ``mpqc``, ``mpc``
6 * base class ``Infinity`` for extended numbers
7 * various low-level number theory functions: ``gcd``, ``multinomial_coefficients``, etc.
9 """
10 __docformat__ = "restructuredtext"
12 from . import mpmath
13 from .numbers import mpq, mpf, mpqc, mpc, setdps, getdps
14 from .number_theory import gcd, lcm, multinomial_coefficients, f2q
15 from .infinity import Infinity