Skip to content

Small typos in DWTHandler #330

@D4rkCrypto

Description

@D4rkCrypto

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++)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions