From c4c70669d165afefe0c68e7bb194ee81b9fba0b5 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 14 Jan 2009 14:24:10 +0000 Subject: Big rewrite in the Sparse module: SparseMatrixBase no longer inherits MatrixBase. That means a lot of features which were available for sparse matrices via the dense (and super slow) implemention are no longer available. All features which make sense for sparse matrices (aka can be implemented efficiently) will be implemented soon, but don't expect to see an API as rich as for the dense path. Other changes: * no block(), row(), col() anymore. * instead use .innerVector() to get a col or row vector of a matrix. * .segment(), start(), end() will be back soon, not sure for block() * faster cwise product --- cmake/FindSuperLU.cmake | 4 ---- 1 file changed, 4 deletions(-) (limited to 'cmake/FindSuperLU.cmake') diff --git a/cmake/FindSuperLU.cmake b/cmake/FindSuperLU.cmake index e10561b60..fbefc943a 100644 --- a/cmake/FindSuperLU.cmake +++ b/cmake/FindSuperLU.cmake @@ -16,10 +16,6 @@ if(BLAS_FOUND) ) find_library(SUPERLU_LIBRARIES superlu PATHS $ENV{SUPERLUDIR} ${LIB_INSTALL_DIR}) - - if(SUPERLU_LIBRARIES AND CMAKE_COMPILER_IS_GNUCXX) - set(SUPERLU_LIBRARIES ${SUPERLU_LIBRARIES} -lgfortran) - endif(SUPERLU_LIBRARIES AND CMAKE_COMPILER_IS_GNUCXX) if(SUPERLU_LIBRARIES) set(SUPERLU_LIBRARIES ${SUPERLU_LIBRARIES} ${BLAS_LIBRARIES}) -- cgit v1.2.3