Go to the documentation of this file.00001
00002
00003
00004
00005
00006 #ifndef MOR_EPETRAMVDENSEMATRIXVIEW_HPP
00007 #define MOR_EPETRAMVDENSEMATRIXVIEW_HPP
00008
00009 class Epetra_MultiVector;
00010 class Epetra_SerialDenseMatrix;
00011 class Epetra_SerialSymDenseMatrix;
00012
00013 namespace MOR {
00014
00015 Epetra_SerialDenseMatrix localDenseMatrixView(Epetra_MultiVector &mv);
00016 Epetra_SerialSymDenseMatrix localSymDenseMatrixView(Epetra_MultiVector &mv);
00017
00018 }
00019
00020 #endif