aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/LU
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-04-14 17:07:12 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-04-14 17:07:12 +0000
commit2a86f052a5d26c6917aee91004e220c0c2a0657e (patch)
tree910b459e63c41ac0d66a8c39332c977029615d8c /Eigen/LU
parent9789c04467d17abc338981cd2aa6d8824e6705b4 (diff)
- optimized determinant calculations for small matrices (size <= 4)
(only 30 muls for size 4) - rework the matrix inversion: now using cofactor technique for size<=3, so the ugly unrolling is only used for size 4 anymore, and even there I'm looking to get rid of it.
Diffstat (limited to 'Eigen/LU')
-rw-r--r--Eigen/LU1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/LU b/Eigen/LU
index 9d92196d5..c22eac2b5 100644
--- a/Eigen/LU
+++ b/Eigen/LU
@@ -5,6 +5,7 @@
namespace Eigen {
+#include "Eigen/src/LU/Determinant.h"
#include "Eigen/src/LU/Inverse.h"
} // namespace Eigen