scipy/sparse/linalg/dsolve/_superluobject.h | 8 ++++---- scipy/sparse/linalg/dsolve/setup.py | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/scipy/sparse/linalg/dsolve/_superluobject.h b/scipy/sparse/linalg/dsolve/_superluobject.h index 182821d..15e5a2e 100644 --- a/scipy/sparse/linalg/dsolve/_superluobject.h +++ b/scipy/sparse/linalg/dsolve/_superluobject.h @@ -9,11 +9,11 @@ #define __SUPERLU_OBJECT #include "Python.h" -#include "SuperLU/SRC/slu_zdefs.h" +#include "superlu/slu_zdefs.h" #include "numpy/arrayobject.h" -#include "SuperLU/SRC/slu_util.h" -#include "SuperLU/SRC/slu_dcomplex.h" -#include "SuperLU/SRC/slu_scomplex.h" +#include "superlu/slu_util.h" +#include "superlu/slu_dcomplex.h" +#include "superlu/slu_scomplex.h" #define _CHECK_INTEGER(x) (PyArray_ISINTEGER(x) && (x)->descr->elsize == sizeof(int)) diff --git a/scipy/sparse/linalg/dsolve/setup.py b/scipy/sparse/linalg/dsolve/setup.py index e7d63da..fa2c1e2 100755 --- a/scipy/sparse/linalg/dsolve/setup.py +++ b/scipy/sparse/linalg/dsolve/setup.py @@ -25,18 +25,18 @@ def configuration(parent_package='',top_path=None): # when using MSVC + MKL, lsame is already in MKL sources.remove(join(superlu_src, 'lsame.c')) - config.add_library('superlu_src', - sources = sources, - macros = superlu_defs, - include_dirs=[superlu_src], - ) +# config.add_library('superlu_src', +# sources = sources, +# macros = superlu_defs, +# include_dirs=[superlu_src], +# ) # Extension config.add_extension('_superlu', sources = ['_superlumodule.c', '_superlu_utils.c', '_superluobject.c'], - libraries = ['superlu_src'], + libraries = ['superlu'], extra_info = lapack_opt, )