Skip to content
Snippets Groups Projects
Commit 84b0ea08 authored by Siqi Ling's avatar Siqi Ling
Browse files

fix comply error in sequential mode

parent 50a0e255
No related branches found
No related tags found
No related merge requests found
......@@ -21,21 +21,23 @@
#include "Arh2Writer.h"
#include "Mesh.h"
#include "MeshStructure.h"
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
#include "parallel/StdMpi.h"
#endif
namespace AMDiS { namespace io {
using namespace std;
using namespace AMDiS::Parallel;
namespace Arh2Writer
{
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
void writeMetaData(Mesh *mesh, string metaFilename)
void writeMetaData(Mesh *mesh, std::string metaFilename)
{
FUNCNAME("Arh2Writer::writeMetaData()");
using namespace std;
using namespace AMDiS::Parallel;
int mpiSize = MPI::COMM_WORLD.Get_size();
vector<std::set<pair<int, int> > > overallData;
std::set<pair<int, int> > data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment