WIP: feat: Initial implementation of ssf. Sort missinf
This commit is contained in:
parent
69a2026c84
commit
17bade8a62
7 changed files with 108 additions and 10 deletions
|
|
@ -112,7 +112,7 @@ pub fn gfpoly_gcd(args: &Value) -> Result<Polynomial> {
|
|||
let poly_a = Polynomial::from_c_array(&args["A"].clone());
|
||||
let poly_b = Polynomial::from_c_array(&args["B"].clone());
|
||||
|
||||
let result = gcd(poly_a.monic(), poly_b.monic());
|
||||
let result = gcd(&poly_a.monic(), &poly_b.monic());
|
||||
|
||||
Ok(result)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue