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
Currently Frequency is implemented as a Double. While the end result is fine as a double, we have issues with comparing the frequencies (like when we are eliminating zeroes) or losing precision with operations. By using a Rational type we would keep accuracy until the very end, where we can then decide (or not) to convert it to a double.
The text was updated successfully, but these errors were encountered:
Currently Frequency is implemented as a Double. While the end result is fine as a double, we have issues with comparing the frequencies (like when we are eliminating zeroes) or losing precision with operations. By using a Rational type we would keep accuracy until the very end, where we can then decide (or not) to convert it to a double.
The text was updated successfully, but these errors were encountered: