feat: Add task runner for the sff task
This commit is contained in:
parent
1c9948ac62
commit
6856420ff9
6 changed files with 62 additions and 24 deletions
|
|
@ -0,0 +1,10 @@
|
|||
use super::poly::Polynomial;
|
||||
|
||||
pub fn dff(f: Polynomial) {
|
||||
let q = 2u128.pow(128);
|
||||
let z: Vec<(Polynomial, u32)> = vec![];
|
||||
let d = 1;
|
||||
let f_start = f.clone();
|
||||
|
||||
while f_start.degree() >= 2 * d {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue