Skip to content
Snippets Groups Projects
Verified Commit 8448845d authored by STEVAN Antoine's avatar STEVAN Antoine :crab:
Browse files

rename core function to `run`

parent d5556206
No related branches found
No related tags found
1 merge request!142remove "end to end" test case from "inbreeding"
Pipeline #5390 passed
......@@ -58,7 +58,7 @@ fn measure_inbreeding<F: PrimeField>(
}
#[allow(clippy::too_many_arguments)]
fn recoding<F, Fun>(
fn run<F, Fun>(
bytes: &[u8],
k: usize,
n: usize,
......@@ -187,7 +187,7 @@ fn main() {
"k-recoding: k = {}, n = {}, strategy = {:?}, environment = {:?}",
cli.k, cli.n, strategy, environment,
);
let _ = recoding::<ark_pallas::Fr, _>(
let _ = run::<ark_pallas::Fr, _>(
&bytes,
cli.k,
cli.n,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment