Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small typos in DWTHandler #330

Closed
D4rkCrypto opened this issue May 8, 2021 · 1 comment
Closed

Small typos in DWTHandler #330

D4rkCrypto opened this issue May 8, 2021 · 1 comment

Comments

@D4rkCrypto
Copy link

I found two typos in seal::util::DWTHandler::transform_from_rev implementation. No bugs are triggered at runtime because this part of code is rarely called.

for (std::size_t j = 0; j < gap; j += 4)

for (std::size_t j = 0; j < gap; j += 4)

The iteration statement here should be:

for (std::size_t j = 0; j < gap; j++)
@WeiDaiWD
Copy link
Contributor

WeiDaiWD commented May 8, 2021

Thank you so much! This is a nasty typo. I've fixed it internally and will include that in the next release.

@WeiDaiWD WeiDaiWD closed this as completed May 8, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants