forked from deepmodeling/abacus-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexport.cpp
More file actions
33 lines (28 loc) · 716 Bytes
/
export.cpp
File metadata and controls
33 lines (28 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// =============================================================================
// C++ Header File
// Project:
// File: export.h
// Author: mohan
// Comment:
// Warning:
// Start time: 2008-9-3
// Last modified:
// =============================================================================
#include "export.h"
/*
void ModuleBase::IF_MATCH(const std::string &name,const std::string &name2)
{
if(name!=name2)
{
if(GlobalV::MY_RANK == 0)
{
std::cout<<"\n Can not match : "<<name<<" "<<name2<<std::endl;
}
#ifdef __MPI
MPI_Finalize();
#endif
exit(0);
}
// std::cout<<std::setw(12)<<name<<std::endl;
return;
}*/