On Mon, 8 Aug 2022 at 08:26, <[email protected]> wrote: > > In order to install gmpy2 I ran pip install and added an import statement. Do > I need anything else?
If gmpy2 is installed then it will be used automatically by the polys module for internal calculations. It is not used by Rational so whether it gets used depends on exactly how you do the calculations. If you are really just doing calculations with pure rational numbers then the most efficient thing would probably be to use gmpy2's mpq type directly (i.e. no need for SymPy at all) -- Oscar -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CAHVvXxROuZ_fZdmCdt8V7ufts9xift_Zuuo6tbxQBkZdpZhHHQ%40mail.gmail.com.
