00001 //*****************************************************************// 00002 // Albany 2.0: Copyright 2012 Sandia Corporation // 00003 // This Software is released under the BSD license detailed // 00004 // in the file "license.txt" in the top-level Albany directory // 00005 //*****************************************************************// 00006 #ifndef MOR_EXTENDEDEPETRALAPACK_HPP 00007 #define MOR_EXTENDEDEPETRALAPACK_HPP 00008 00009 #include "Epetra_LAPACK.h" 00010 00011 namespace MOR { 00012 00013 class Extended_Epetra_LAPACK : public Epetra_LAPACK { 00014 public: 00015 double LANSY(const char NORM, const char UPLO, const int N, const double *A, const int LDA, double *WORK) const; 00016 }; 00017 00018 } // end namespace MOR 00019 00020 #endif /* MOR_EXTENDEDEPETRALAPACK_HPP */