00001
00002 #include <iosfwd>
00003
00004 class Epetra_IntSerialDenseVector;
00005 class Epetra_SerialDenseMatrix;
00006 class Epetra_IntSerialDenseMatrix;
00007
00008 namespace GLpApp {
00009
00015 void rect2DMeshGenerator(
00016 const int numProc
00017 ,const int procRank
00018 ,const double len_x
00019 ,const double len_y
00020 ,const int local_nx
00021 ,const int local_ny
00022 ,const int bndy_marker
00023 ,Epetra_IntSerialDenseVector *ipindx_out
00024 ,Epetra_SerialDenseMatrix *ipcoords_out
00025 ,Epetra_IntSerialDenseVector *pindx_out
00026 ,Epetra_SerialDenseMatrix *pcoords_out
00027 ,Epetra_IntSerialDenseMatrix *t_out
00028 ,Epetra_IntSerialDenseMatrix *e_out
00029 ,std::ostream *out
00030 ,const bool dumpAll
00031 );
00032
00033 }