Skip to content

Commit ceac065

Browse files
Update main.cpp
1 parent da1baf5 commit ceac065

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

source/main.cpp

Lines changed: 8 additions & 2 deletions
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
{
@@ -35,7 +36,7 @@ int main(int argc, char** argv)
3536
fftw_plan_with_nthreads(omp_get_max_threads());
3637
#endif
3738
PARAM.set_pal_param(my_rank, nproc, nthread_per_proc);
38-
39+
3940
/*
4041
main program for doing electronic structure calculations.
4142
*/
@@ -51,6 +52,11 @@ int main(int argc, char** argv)
5152
#ifdef _OPENMP
5253
fftw_cleanup_threads();
5354
#endif
55+
if(true)
56+
std::cout<<true<<std::endl;
57+
58+
for(int i=0; i<10; ++i)
59+
std::cout<<i<<std::endl;
5460

5561
return 0;
56-
}
62+
}

0 commit comments

Comments
 (0)