www.pudn.com > Genecircus20070919.rar > InterActionMPI.cpp


// InterActionMPI.cpp: implementation of the InterActionMPI class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#include "InterActionMPI.h" 
 
////////////////////////////////////////////////////////////////////// 
// Construction/Destruction 
////////////////////////////////////////////////////////////////////// 
 
InterActionMPI::InterActionMPI() 
{ 
 
} 
 
InterActionMPI::~InterActionMPI() 
{ 
 
} 
 
void rebuild(Network * net,int myid) 
{  
	if(myid == 0){ 
	   //wxMessageBox("0"); 
 
	} 
	else if(myid == 1){ 
	 
	} 
	//wxMessageBox("2"); 
} 
 
void InterActionMPI::Rebuild_network(Network * net,int myid) 
{ 
   //boost::thread thrd1( 
   //boost::bind(&rebuild,net,myid)); 
   //thrd1.join(); 
	rebuild(net,myid); 
}