Skip to content
Snippets Groups Projects
Commit 54a094e7 authored by amtoine's avatar amtoine
Browse files

add the problematic missing docs as TODOs

parent 7c9912c3
No related branches found
No related tags found
1 merge request!1CI: add same jobs as in original GitHub fork
Pipeline #2600 failed with stage
in 7 minutes and 37 seconds
......@@ -260,6 +260,7 @@ where
Ok((witness_polynomial, random_witness_polynomial))
}
/// TODO: missing documentation
pub fn open_with_witness_polynomial<'a>(
powers: &Powers<E>,
point: P::Point,
......@@ -410,6 +411,7 @@ where
Ok(result)
}
/// TODO: missing documentation
pub fn check_degree_is_too_large(degree: usize, num_powers: usize) -> Result<(), Error> {
let num_coefficients = degree + 1;
if num_coefficients > num_powers {
......@@ -422,6 +424,7 @@ where
}
}
/// TODO: missing documentation
pub fn check_hiding_bound(hiding_poly_degree: usize, num_powers: usize) -> Result<(), Error> {
if hiding_poly_degree == 0 {
Err(Error::HidingBoundIsZero)
......@@ -438,6 +441,7 @@ where
}
}
/// TODO: missing documentation
pub fn check_degrees_and_bounds<'a>(
supported_degree: usize,
max_degree: usize,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment