Skip to content
Snippets Groups Projects
Commit 3b9b6f60 authored by Alperen, Abdullah's avatar Alperen, Abdullah
Browse files

PuReMD: minor change: remove output statements for debugging

parent cd9aaec0
No related branches found
No related tags found
No related merge requests found
......@@ -851,18 +851,8 @@ void Print_HBonds( reax_system *system, reax_list **lists,
FILE *fout;
reax_list *hbonds = lists[HBONDS];
snprintf( fname, MAX_STR, "hbonds.%d.%d", step, system->my_rank );
fprintf( stdout, "p%d, Round 1, Printing H bonds, numH = %d\n", system->my_rank, system->numH );
fflush( stdout );
MPI_Barrier( MPI_COMM_WORLD );
//fout = sfopen( fname, "w", "Print_HBonds" );
fout = fopen( fname, "w" );
fprintf( stdout, "p%d, Round 2, Printing H bonds, numH = %d\n", system->my_rank, system->numH );
fflush( stdout );
MPI_Barrier( MPI_COMM_WORLD );
sprintf( fname, "%s.hbonds.%d.%d", control->sim_name, step, system->my_rank );
fout = sfopen( fname, "w", "Print_HBonds" );
for ( i = 0; i < system->numH; ++i )
{
......@@ -877,7 +867,6 @@ void Print_HBonds( reax_system *system, reax_list **lists,
}
}
sfclose( fout, "Print_HBonds" );
}
......
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