aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/nomalloc.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-06-08 15:03:23 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-06-08 15:03:23 +0000
commite3fac69f196a0a1c6ede9d510f2a4409399ad2c1 (patch)
treeec3cd5a2d0401237bec591c93435d3917fe1564e /test/nomalloc.cpp
parent4dd57b585d2cd33afcd5900eb740250115e03c4a (diff)
Added a Hessenberg decomposition class for both real and complex matrices.
This is the first step towards a non-selfadjoint eigen solver. Notes: - We might consider merging Tridiagonalization and Hessenberg toghether ? - Or we could factorize some code into a Householder class (could also be shared with QR)
Diffstat (limited to 'test/nomalloc.cpp')
-rw-r--r--test/nomalloc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp
index 6d40222a4..d6c566bef 100644
--- a/test/nomalloc.cpp
+++ b/test/nomalloc.cpp
@@ -22,7 +22,9 @@
// License and a copy of the GNU General Public License along with
// Eigen. If not, see <http://www.gnu.org/licenses/>.
+// this hack is needed to make this file compiles with -pedantic (gcc)
#define throw(X)
+// discard vectorization since operator new is not called in that case
#define EIGEN_DONT_VECTORIZE 1
#include "main.h"