MATH-1416: Depend on "Commons Numbers".
This commit is contained in:
parent
c965f1c7fc
commit
0f25f11ce6
6
pom.xml
6
pom.xml
|
@ -377,6 +377,12 @@
|
|||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-numbers-complex</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-numbers-gamma</artifactId>
|
||||
|
|
|
@ -17,14 +17,14 @@
|
|||
|
||||
package org.apache.commons.math4.linear;
|
||||
|
||||
import org.apache.commons.math4.complex.Complex;
|
||||
import org.apache.commons.numbers.complex.Complex;
|
||||
import org.apache.commons.numbers.core.Precision;
|
||||
import org.apache.commons.math4.exception.DimensionMismatchException;
|
||||
import org.apache.commons.math4.exception.MathArithmeticException;
|
||||
import org.apache.commons.math4.exception.MathUnsupportedOperationException;
|
||||
import org.apache.commons.math4.exception.MaxCountExceededException;
|
||||
import org.apache.commons.math4.exception.util.LocalizedFormats;
|
||||
import org.apache.commons.math4.util.FastMath;
|
||||
import org.apache.commons.numbers.core.Precision;
|
||||
|
||||
/**
|
||||
* Calculates the eigen decomposition of a real matrix.
|
||||
|
|
Loading…
Reference in New Issue