Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#ifdef _OPENMP
#include <omp.h>
#endif
#include <iostream>

int main(int argc, char** argv)
{
Expand All @@ -35,7 +36,7 @@ int main(int argc, char** argv)
fftw_plan_with_nthreads(omp_get_max_threads());
#endif
PARAM.set_pal_param(my_rank, nproc, nthread_per_proc);

/*
main program for doing electronic structure calculations.
*/
Expand All @@ -51,6 +52,13 @@ int main(int argc, char** argv)
#ifdef _OPENMP
fftw_cleanup_threads();
#endif
if(true) {
std::cout<<true<<std::endl;
}

for(int i=0; i<10; ++i) {
std::cout<<i<<std::endl;
}

return 0;
}
}
Loading