aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/main.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-25 17:20:58 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-25 17:20:58 +0000
commitdad245af56b4597f27d7c219e5f5f0b38cd62d24 (patch)
tree64d24b37b4be26bddd842f359ff42bc30abfa723 /test/main.h
parent3cd2a125b2712d6b7c620bef0671c6a05839d6e5 (diff)
- eigen2 now fully enforces constness! found a way to achieve that
with minimal code duplication. There now are only two (2) const_cast remaining in the whole source code. - eigen2 now fully allows copying a row-vector into a column-vector. added a unit-test for that. - split unit tests, improve docs, various improvements.
Diffstat (limited to 'test/main.h')
-rw-r--r--test/main.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/main.h b/test/main.h
index 8cab47331..59c6b2de7 100644
--- a/test/main.h
+++ b/test/main.h
@@ -114,10 +114,13 @@ class EigenTest : public QObject
private slots:
void testBasicStuff();
+ void testLinearStructure();
+ void testProduct();
void testAdjoint();
void testSubmatrices();
void testMiscMatrices();
void testSmallVectors();
+ void testMap();
protected:
int m_repeat;
};