From 43f74cb5b1c19e8eb0d6f9f5bf0635eeb0447c85 Mon Sep 17 00:00:00 2001 From: Desire NUENTSA Date: Tue, 7 Aug 2012 13:55:50 +0200 Subject: [PATCH] Bug in 2D block update, disable it for now --- Eigen/src/SparseLU/SparseLU_panel_bmod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/SparseLU/SparseLU_panel_bmod.h b/Eigen/src/SparseLU/SparseLU_panel_bmod.h index 50da8123e..bfe13b38a 100644 --- a/Eigen/src/SparseLU/SparseLU_panel_bmod.h +++ b/Eigen/src/SparseLU/SparseLU_panel_bmod.h @@ -95,7 +95,7 @@ void LU_panel_bmod(const int m, const int w, const int jcol, const int nseg, Sca // if the blocks are large enough, use level 3 // TODO find better heuristics! - if(nsupc >= 50 && nrow > 50 && u_cols>6) + if(false && nsupc >= 50 && nrow > 50 && u_cols>6) { Map > U(tempv.data(), u_rows, u_cols);