We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test case:
@Test public void testSmallDomain6() throws Exception { IntegersZp64 ring = Rings.Zp64(3); MultivariatePolynomialZp64 a = MultivariatePolynomialZp64.parse("1 + a + 5*b + 7*c + d + 11*e + 13*f + g", ring), b = MultivariatePolynomialZp64.parse("1 - a + 5*b - 7*c + d - 11*e + 13*f - g", ring), g = MultivariatePolynomialZp64.parse("1 + a - 5*b + 7*c - d + 11*e - 13*f + g", ring); int exp = 7; a = PolynomialMethods.polyPow(a, exp); b = PolynomialMethods.polyPow(b, exp); g = PolynomialMethods.polyPow(g, exp); MultivariatePolynomialZp64 ag = a.clone().multiply(g); MultivariatePolynomialZp64 bg = b.clone().multiply(g); System.out.println(PolynomialGCD(ag, bg)); }
The text was updated successfully, but these errors were encountered:
To #20
a56dca6
EEZ-GCD works fine on this input.
Sorry, something went wrong.
No branches or pull requests
Test case:
The text was updated successfully, but these errors were encountered: