From 28dde19e40a3d758faa94f0fc228857f7b3192ea Mon Sep 17 00:00:00 2001 From: Adolfo Rodriguez Tsouroukdissian Date: Wed, 21 Apr 2010 17:15:57 +0200 Subject: - Added problem size constructor to decompositions that did not have one. It preallocates member data structures. - Updated unit tests to check above constructor. - In the compute() method of decompositions: Made temporary matrices/vectors class members to avoid heap allocations during compute() (when dynamic matrices are used, of course). These changes can speed up decomposition computation time when a solver instance is used to solve multiple same-sized problems. An added benefit is that the compute() method can now be invoked in contexts were heap allocations are forbidden, such as in real-time control loops. CAVEAT: Not all of the decompositions in the Eigenvalues module have a heap-allocation-free compute() method. A future patch may address this issue, but some required API changes need to be incorporated first. --- test/schur_real.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/schur_real.cpp') diff --git a/test/schur_real.cpp b/test/schur_real.cpp index c1747e2f5..d0aca4308 100644 --- a/test/schur_real.cpp +++ b/test/schur_real.cpp @@ -82,4 +82,7 @@ void test_schur_real() CALL_SUBTEST_2(( schur(ei_random(1,50)) )); CALL_SUBTEST_3(( schur >() )); CALL_SUBTEST_4(( schur >() )); + + // Test problem size constructors + CALL_SUBTEST_5(RealSchur(10)); } -- cgit v1.2.3