diff --git a/src/lib.rs b/src/lib.rs index f71f444..ff5a992 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -21,7 +21,9 @@ pub mod utils; /// The actual meaning of the 2 elements is determined by the context. /// /// - `IN_BLEN` is the **byte** length of the size of the input domain. -/// - `OUT_BLEN` is the **byte** length of the size of the output domain. `$\lambda$` (but the byte length). +/// `$n$` or `$\lceil \log_2 |\mathbb{G}^{in}| \rceil$` (but the byte length). +/// - `OUT_BLEN` is the **byte** length of the size of the output domain. +/// `$\lambda$` or `$\lceil \log_2 |\mathbb{G}^{out}| \rceil$` (but the byte length). pub struct PointFn where G: Group,