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
ChebHash currently computes an order-1024 discrete Chebyshev transform for all inputs. This defeats the purpose of ChebHash in the first place, which is to generate a variable-size transform so that we can achieve a desired accuracy without having to generate more coefficients than necessary. The current hardcoded number of coefficients should be replaced with a method for figuring out how many coefficients should be generated for a given input function f.
The text was updated successfully, but these errors were encountered:
This was partially addressed in 9590d8c by allowing users to specify the number of coefficients explicitly. There still isn't any support for automatically choosing the number of coefficients, though.
ChebHash currently computes an order-1024 discrete Chebyshev transform for all inputs. This defeats the purpose of ChebHash in the first place, which is to generate a variable-size transform so that we can achieve a desired accuracy without having to generate more coefficients than necessary. The current hardcoded number of coefficients should be replaced with a method for figuring out how many coefficients should be generated for a given input function
f
.The text was updated successfully, but these errors were encountered: