45 #ifndef __SCIP_LAPACK_H__ 
   46 #define __SCIP_LAPACK_H__ 
   49 #include "blockmemshell/memory.h" 
   50 #include "scip/type_retcode.h" 
   60    SCIP_Bool             geteigenvectors,    
 
   64    SCIP_Real*            eigenvalue,         
 
   65    SCIP_Real*            eigenvector         
 
EXTERN SCIP_RETCODE SCIPlapackMatrixVectorMult(int nrows, int ncols, SCIP_Real *matrix, SCIP_Real *vector, SCIP_Real *result)
EXTERN SCIP_RETCODE SCIPlapackComputeIthEigenvalue(BMS_BLKMEM *blkmem, SCIP_Bool geteigenvectors, int n, SCIP_Real *A, int i, SCIP_Real *eigenvalue, SCIP_Real *eigenvector)