Class BigDecimalPolynomial
- java.lang.Object
-
- org.bouncycastle.pqc.math.ntru.polynomial.BigDecimalPolynomial
-
public class BigDecimalPolynomial extends java.lang.ObjectA polynomial withBigDecimalcoefficients. Some methods (likeadd) change the polynomial, others (likemult) do not but return the result as a new polynomial.
-
-
Constructor Summary
Constructors Constructor Description BigDecimalPolynomial(BigIntPolynomial p)Constructs aBigDecimalPolynomialfrom aBigIntPolynomial.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(BigDecimalPolynomial b)Adds another polynomial which can have a different number of coefficients.java.lang.Objectclone()Makes a copy of the polynomial that is independent of the original.java.math.BigDecimal[]getCoeffs()voidhalve()Divides all coefficients by 2.BigDecimalPolynomialmult(BigDecimalPolynomial poly2)Multiplies the polynomial by another, taking the indices mod N.BigDecimalPolynomialmult(BigIntPolynomial poly2)Multiplies the polynomial by another.BigIntPolynomialround()Rounds all coefficients to the nearest integer.
-
-
-
Constructor Detail
-
BigDecimalPolynomial
public BigDecimalPolynomial(BigIntPolynomial p)
Constructs aBigDecimalPolynomialfrom aBigIntPolynomial. The two polynomials are independent of each other.- Parameters:
p- the original polynomial
-
-
Method Detail
-
halve
public void halve()
Divides all coefficients by 2.
-
mult
public BigDecimalPolynomial mult(BigIntPolynomial poly2)
Multiplies the polynomial by another. Does not change this polynomial but returns the result as a new polynomial.- Parameters:
poly2- the polynomial to multiply by- Returns:
- a new polynomial
-
mult
public BigDecimalPolynomial mult(BigDecimalPolynomial poly2)
Multiplies the polynomial by another, taking the indices mod N. Does not change this polynomial but returns the result as a new polynomial.- Parameters:
poly2- the polynomial to multiply by- Returns:
- a new polynomial
-
add
public void add(BigDecimalPolynomial b)
Adds another polynomial which can have a different number of coefficients.- Parameters:
b- another polynomial
-
round
public BigIntPolynomial round()
Rounds all coefficients to the nearest integer.- Returns:
- a new polynomial with
BigIntegercoefficients
-
clone
public java.lang.Object clone()
Makes a copy of the polynomial that is independent of the original.- Overrides:
clonein classjava.lang.Object
-
getCoeffs
public java.math.BigDecimal[] getCoeffs()
-
-