aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl/libs/gmm/gmm_interface.hh
diff options
context:
space:
mode:
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);