00001 //@HEADER 00002 /* 00003 ************************************************************************ 00004 00005 EpetraExt: Extended Linear Algebra Services Package 00006 Copyright (2001) Sandia Corporation 00007 00008 Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00009 license for use of this work by or on behalf of the U.S. Government. 00010 00011 This library is free software; you can redistribute it and/or modify 00012 it under the terms of the GNU Lesser General Public License as 00013 published by the Free Software Foundation; either version 2.1 of the 00014 License, or (at your option) any later version. 00015 00016 This library is distributed in the hope that it will be useful, but 00017 WITHOUT ANY WARRANTY; without even the implied warranty of 00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00019 Lesser General Public License for more details. 00020 00021 You should have received a copy of the GNU Lesser General Public 00022 License along with this library; if not, write to the Free Software 00023 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00024 USA 00025 Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00026 00027 ************************************************************************ 00028 */ 00029 //@HEADER 00030 00031 #ifndef EPETRAEXT_MULTIMPICOMM_H 00032 #define EPETRAEXT_MULTIMPICOMM_H 00033 00034 #include "EpetraExt_ConfigDefs.h" 00035 #include "Epetra_MpiComm.h" 00036 00041 00051 namespace EpetraExt { 00052 00053 class MultiMpiComm: public Epetra_MpiComm { 00054 public: 00055 00057 00058 00067 MultiMpiComm(MPI_Comm globalComm, int subDomainProcs, int numTimeSteps_=-1); 00068 00070 00078 MultiMpiComm(const Epetra_MpiComm& Comm, int numTimeSteps_); 00079 00081 MultiMpiComm( const MultiMpiComm &MMC ); 00082 00084 virtual ~MultiMpiComm(); 00086 00088 Epetra_MpiComm& SubDomainComm() const {return *subComm;} 00089 00091 int NumSubDomains() const {return numSubDomains;} 00092 00094 int SubDomainRank() const {return subDomainRank;} 00095 00097 int NumTimeStepsOnDomain() const {return numTimeStepsOnDomain;} 00098 int FirstTimeStepOnDomain() const {return firstTimeStepOnDomain;} 00099 00101 int NumTimeSteps() const {return numTimeSteps;} 00102 00104 // be set later than the MultiLevel parallelism is set up. 00105 void ResetNumTimeSteps(int numTimeSteps); 00106 00107 protected: 00108 00109 Epetra_MpiComm* subComm; 00110 int numSubDomains; 00111 int subDomainRank; 00112 int numTimeSteps; 00113 int numTimeStepsOnDomain; 00114 int firstTimeStepOnDomain; 00115 00116 }; 00117 00118 } //namespace EpetraExt 00119 00120 #endif /* EPETRAEXT_MPIMULTICOMM_H */
1.4.7