Relax epsilon criteria for eigen decomposition.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1362665 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-07-17 21:30:23 +00:00
parent 35c5d7143b
commit 7dd77c4bdf

View File

@ -98,7 +98,7 @@ public class EigenDecomposition {
private RealMatrix cachedVt;
/** Internally used epsilon criteria. */
private final double epsilon = 1e-16;
private final double epsilon = 1e-12;
/**
* Calculates the eigen decomposition of the given real matrix.