aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/libs/gmm/gmm_interface.hh
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-03-22 15:39:23 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-03-22 15:39:23 +0100
commitda3f3586e06543a2f573a1182415072b876ce481 (patch)
tree24a80c5052b9c4c0e21de8ac3fe1a8e91b7eccb5 /bench/btl/libs/gmm/gmm_interface.hh
parent22c7609d72c3faaebe7931a4f6759e3c4546839a (diff)
BTl: GMM++ LU is not a full pivoting LU
Diffstat (limited to 'bench/btl/libs/gmm/gmm_interface.hh')
-rw-r--r--bench/btl/libs/gmm/gmm_interface.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/btl/libs/gmm/gmm_interface.hh b/bench/btl/libs/gmm/gmm_interface.hh
index 3a7ec6439..3ea303c1b 100644
--- a/bench/btl/libs/gmm/gmm_interface.hh
+++ b/bench/btl/libs/gmm/gmm_interface.hh
@@ -123,7 +123,7 @@ public :
gmm::lower_tri_solve(L, X, false);
}
- static inline void lu_decomp(const gene_matrix & X, gene_matrix & R, int N){
+ static inline void partial_lu_decomp(const gene_matrix & X, gene_matrix & R, int N){
gmm::copy(X,R);
std::vector<int> ipvt(N);
gmm::lu_factor(R, ipvt);