gvsu/cs677/pa4/maximum-parsimony.cc
josh 2e3b5abd0f added ElementSet, Sequence, skeleton maximum-parsimony.cc, updated Makefile
git-svn-id: svn://anubis/gvsu@298 45c1a28c-8058-47b2-ae61-ca45b979098e
2008-11-30 18:26:53 +00:00

20 lines
354 B
C++

#include <iostream>
#include <sys/time.h>
#include <mpi.h>
using namespace std;
int main(int argc, char * argv[])
{
int my_rank;
int world_size; /* the number of processes */
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &my_rank);
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
MPI_Finalize();
return 0;
}