00001 #ifndef STARLAB_LOCALMPI_H 00002 # define STARLAB_LOCALMPI_H 00003 00004 //#define USE_MPI 00005 00006 #ifndef USE_MPI 00007 class MPI { 00008 public: 00009 class COMM_WORLD {}; 00010 int Get_rank() {return 0;} 00011 }; 00012 00013 00014 //void finalize_MPI() {} 00015 00016 struct MPI_Datatype { 00017 // empty 00018 }; 00019 00020 //void initialize_MPI(int &myid, int &nproc) {} 00021 #endif 00022 00023 #endif 00024 00025 00026 00027 00028 00029 00030