00001 //@HEADER 00002 // *********************************************************************** 00003 // 00004 // EpetraExt: Epetra Extended - Linear Algebra Services Package 00005 // Copyright (2001) Sandia Corporation 00006 // 00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00008 // license for use of this work by or on behalf of the U.S. Government. 00009 // 00010 // This library is free software; you can redistribute it and/or modify 00011 // it under the terms of the GNU Lesser General Public License as 00012 // published by the Free Software Foundation; either version 2.1 of the 00013 // License, or (at your option) any later version. 00014 // 00015 // This library is distributed in the hope that it will be useful, but 00016 // WITHOUT ANY WARRANTY; without even the implied warranty of 00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 // Lesser General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU Lesser General Public 00021 // License along with this library; if not, write to the Free Software 00022 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00023 // USA 00024 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00025 // 00026 // *********************************************************************** 00027 //@HEADER 00028 00029 //Overlap Test routine 00030 #include <Epetra_ConfigDefs.h> 00031 #include "EpetraExt_Version.h" 00032 00033 #ifdef EPETRA_MPI 00034 #include "Epetra_MpiComm.h" 00035 #include <mpi.h> 00036 #endif 00037 00038 #include "Epetra_SerialComm.h" 00039 #include "Epetra_Time.h" 00040 #include "Epetra_BlockMap.h" 00041 #include "Epetra_CrsGraph.h" 00042 #include "Epetra_CrsMatrix.h" 00043 #include "Epetra_Vector.h" 00044 #include "EpetraExt_Overlap_CrsGraph.h" 00045 #include "EpetraExt_LPTrans_From_GraphTrans.h" 00046 #include "../epetra_test_err.h" 00047 00048 int main(int argc, char *argv[]) { 00049 00050 #ifdef EPETRA_MPI 00051 00052 // Initialize MPI 00053 00054 MPI_Init(&argc,&argv); 00055 //int size, rank; // Number of MPI processes, My process ID 00056 00057 //MPI_Comm_size(MPI_COMM_WORLD, &size); 00058 //MPI_Comm_rank(MPI_COMM_WORLD, &rank); 00059 00060 #else 00061 00062 //int size = 1; // Serial case (not using MPI) 00063 //int rank = 0; 00064 00065 #endif 00066 00067 bool verbose = false; 00068 00069 // Check if we should print results to standard out 00070 if (argc>1) if (argv[1][0]=='-' && argv[1][1]=='v') verbose = true; 00071 00072 00073 #ifdef EPETRA_MPI 00074 Epetra_MpiComm Comm(MPI_COMM_WORLD); 00075 #else 00076 Epetra_SerialComm Comm; 00077 #endif 00078 if (!verbose) Comm.SetTracebackMode(0); // This should shut down any error traceback reporting 00079 00080 int MyPID = Comm.MyPID(); 00081 //int NumProc = Comm.NumProc(); 00082 00083 if (verbose && MyPID==0) 00084 cout << EpetraExt::EpetraExt_Version() << endl << endl; 00085 00086 Comm.Barrier(); 00087 00088 if (verbose) cout << Comm << endl << flush; 00089 00090 Comm.Barrier(); 00091 //bool verbose1 = verbose; 00092 00093 if (verbose) verbose = (MyPID==0); 00094 00095 //int NumMyElements = 10000; 00096 //int NumGlobalElements = NumMyElements*NumProc+EPETRA_MIN(NumProc,3); 00097 //if (MyPID < 3) NumMyElements++; 00098 //int IndexBase = 0; 00099 //int ElementSize = 7; 00100 //bool DistributedGlobal = (NumGlobalElements>NumMyElements); 00101 00102 //Epetra_BlockMap * Map; 00103 00104 cout << "NOT IMPLEMENTED YET!!!\n"; 00105 00106 #ifdef EPETRA_MPI 00107 MPI_Finalize(); 00108 #endif 00109 00110 return 0; 00111 } 00112
1.3.9.1