Skip to content
Snippets Groups Projects
Commit e4e57e42 authored by Kurt A. O'Hearn's avatar Kurt A. O'Hearn
Browse files

sPuReMD: remove unused code.

parent 1b52a1ac
No related branches found
No related tags found
No related merge requests found
......@@ -55,9 +55,6 @@ void Read_Control_File( FILE* fp, reax_system *system, control_params* control,
control->restrict_bonds = 0;
control->periodic_boundaries = 1;
control->periodic_images[0] = 0;
control->periodic_images[1] = 0;
control->periodic_images[2] = 0;
control->reneighbor = 1;
control->vlist_cut = 0;
......@@ -199,15 +196,6 @@ void Read_Control_File( FILE* fp, reax_system *system, control_params* control,
ival = atoi( tmp[1] );
control->periodic_boundaries = ival;
}
else if ( strcmp(tmp[0], "periodic_images") == 0 )
{
ival = atoi(tmp[1]);
control->periodic_images[0] = ival;
ival = atoi(tmp[2]);
control->periodic_images[1] = ival;
ival = atoi(tmp[3]);
control->periodic_images[2] = ival;
}
else if ( strcmp(tmp[0], "geo_format") == 0 )
{
ival = atoi( tmp[1] );
......
......@@ -549,7 +549,6 @@ typedef struct
int periodic_boundaries;
int restrict_bonds;
int tabulate;
ivec periodic_images;
real dt;
int reneighbor;
......
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