Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently, the `N` parameter can be obtained by raising 2 to the power of `Params::log_n`. ```rust // example of raising 2 to the power of `Params::log_n` let n = 1 << params.log_n(); ``` It's easier to read to use a method which gets the `N` parameter directly instead of this way. ```rust let n = params.n(); ```
- Loading branch information