Skip to content

Commit e709cf4

Browse files
authored
just test
1 parent cead7ce commit e709cf4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

source/main.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#ifdef _OPENMP
1212
#include <omp.h>
1313
#endif
14+
#include <iostream>
1415

1516
int main(int argc, char** argv)
1617
{
@@ -42,6 +43,11 @@ int main(int argc, char** argv)
4243
Driver DD;
4344
DD.init();
4445

46+
if(true)
47+
std::cout<<true<<std::endl;
48+
49+
for(int i=0; i<10; ++i)
50+
std::cout<<i<<std::endl;
4551
/*
4652
After running mpi version of abacus, release the mpi resources.
4753
*/
@@ -53,4 +59,4 @@ int main(int argc, char** argv)
5359
#endif
5460

5561
return 0;
56-
}
62+
}

0 commit comments

Comments
 (0)