SHOGUN
v1.1.0
|
00001 /* 00002 * This program is free software; you can redistribute it and/or modify 00003 * it under the terms of the GNU General Public License as published by 00004 * the Free Software Foundation; either version 3 of the License, or 00005 * (at your option) any later version. 00006 * 00007 * Written (W) 2011 Sergey Lisitsyn 00008 * Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society 00009 */ 00010 00011 #ifndef ARPACK_H_ 00012 #define ARPACK_H_ 00013 #include <shogun/lib/config.h> 00014 #ifdef HAVE_ARPACK 00015 #ifdef HAVE_LAPACK 00016 00017 namespace shogun 00018 { 00059 void arpack_dsxupd(double* matrix, double* rhs, bool is_rhs_diag, int n, int nev, 00060 const char* which, bool use_superlu, int mode, bool pos, 00061 double shift, double tolerance, double* eigenvalues, 00062 double* eigenvectors, int& status); 00063 } 00064 #endif /* HAVE_LAPACK */ 00065 #endif /* HAVE_ARPACK */ 00066 #endif /* ARPACK_H_ */ 00067