feat: Add task runner for the sff task

This commit is contained in:
Alivecow 2024-11-25 14:19:41 +01:00
parent 1c9948ac62
commit 6856420ff9
6 changed files with 62 additions and 24 deletions

View file

@ -8,9 +8,9 @@ use crate::utils::{
use super::poly::Polynomial;
#[derive(Debug, Serialize, Deserialize)]
struct Factors {
factor: Vec<String>,
exponent: u32,
pub struct Factors {
pub factor: Vec<String>,
pub exponent: u32,
}
pub fn sff(mut f: Polynomial) -> Vec<(Polynomial, u32)> {