Add test for issue #75 (Hessenberg of 1x1 matrix).

Also remove an superfluous #include in matrixExponential test.
This commit is contained in:
Jitse Niesen 2009-12-16 22:24:24 +00:00
parent 5cb779e5e1
commit 945cbc3bc6
2 changed files with 1 additions and 1 deletions

View File

@ -60,5 +60,6 @@ void test_eigensolver_complex()
for(int i = 0; i < g_repeat; i++) {
CALL_SUBTEST_1( eigensolver(Matrix4cf()) );
CALL_SUBTEST_2( eigensolver(MatrixXcd(14,14)) );
CALL_SUBTEST_3( eigensolver(Matrix<std::complex<float>, 1, 1>()) );
}
}

View File

@ -23,7 +23,6 @@
// Eigen. If not, see <http://www.gnu.org/licenses/>.
#include "main.h"
#include <Eigen/StdVector>
#include <unsupported/Eigen/MatrixFunctions>
double binom(int n, int k)