You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current definition of (say) rescaleCyc Pow for a tuple in the Dec basis may convert the entire tuple to Dec basis. The offending code is (b - reduce z): reduce z would be in the Dec basis, while each b is in the Pow basis. It is up to (-) to determine which term gets converted. To ensure the most efficient rescaling, we should "adviseBasis" to attempt to put z into the basis of b (before reducing). This will make the case above more efficient, while not impacting the efficiency of rescaling a CRT input.
The text was updated successfully, but these errors were encountered:
The current definition of (say)
rescaleCyc Pow
for a tuple in the Dec basis may convert the entire tuple to Dec basis. The offending code is(b - reduce z)
:reduce z
would be in the Dec basis, while eachb
is in the Pow basis. It is up to(-)
to determine which term gets converted. To ensure the most efficient rescaling, we should "adviseBasis" to attempt to putz
into the basis ofb
(before reducing). This will make the case above more efficient, while not impacting the efficiency of rescaling a CRT input.The text was updated successfully, but these errors were encountered: