ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/mpi_implementation/mpiSimulation.cpp
Revision: 137
Committed: Wed Oct 16 20:02:05 2002 UTC (21 years, 8 months ago) by chuckv
File size: 258 byte(s)
Log Message:
*** empty log message ***

File Contents

# Content
1 #include <mpi.h>
2 #include <mpiSimulation.hpp>
3
4 mpiSimulation::mpiSimulation(void)
5 {
6
7 // MPI::Init();
8
9 numberProcessors = MPI::COMM_WORLD.Get_size();
10 myNode = MPI::COMM_WORLD.Get_rank();
11 // MPI::Get_processor_name(processorName,processorNameLen);
12 }
13
14