mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
simplification. Otherwise we can be stuck in infinite loop. This fixes the following bug: when simplifying an expression as 'bigRational1^x*bigRational2^x', we use the rule a^x*b^x --> (a¨b)^x. However, in this case, a*b can't be reduce (resulting rational would be too big) and we're stuck in the loop a^x*b^x --> (a¨b)^x --> a^x*b^x --> (a¨b)^x...