From 9f2c64f33ab9e9922dfafca2bb8d2fc43a6918c3 Mon Sep 17 00:00:00 2001 From: kaymakme <kaymakme@msu.edu> Date: Tue, 22 Jun 2021 12:11:58 -0400 Subject: [PATCH] assign FALSE explicitly for non-dummy atoms --- sPuReMD/src/geo_tools.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sPuReMD/src/geo_tools.c b/sPuReMD/src/geo_tools.c index 999b750..e142963 100644 --- a/sPuReMD/src/geo_tools.c +++ b/sPuReMD/src/geo_tools.c @@ -850,6 +850,10 @@ void Read_BGF( const char * const bgf_file, reax_system* system, control_params if ( strncmp( element, "X\0", 2) == 0 ) { system->atoms[atom_cnt].dummy = TRUE; + } + else + { + system->atoms[atom_cnt].dummy = FALSE; } #if defined(DEBUG_FOCUS) fprintf( stderr, -- GitLab