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

PG-PuReMD: fix adding keyword for polarization energy.

parent 768b7ad3
No related branches found
No related tags found
No related merge requests found
......@@ -374,7 +374,7 @@ void Read_Control_File( const char * const control_file, control_params * const
ival = atoi( tmp[1] );
control->cm_solver_pre_app_jacobi_iters = ival;
}
else if ( strncmp(keyword, "include_polarization_energy", MAX_LINE) == 0 )
else if ( strncmp(tmp[0], "include_polarization_energy", MAX_LINE) == 0 )
{
ival = atoi( tmp[1] );
control->polarization_energy_enabled = ival;
......
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