git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13940 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2015-08-28 20:06:12 +00:00
parent 75cf1f5349
commit cc7cb87584
2 changed files with 3 additions and 3 deletions

View File

@ -686,7 +686,7 @@ int Input::execute_command()
else if (!strcmp(command,"thermo_modify")) thermo_modify(); else if (!strcmp(command,"thermo_modify")) thermo_modify();
else if (!strcmp(command,"thermo_style")) thermo_style(); else if (!strcmp(command,"thermo_style")) thermo_style();
else if (!strcmp(command,"timestep")) timestep(); else if (!strcmp(command,"timestep")) timestep();
else if (!strcmp(command,"timers")) timers(); else if (!strcmp(command,"timer")) timer_command();
else if (!strcmp(command,"uncompute")) uncompute(); else if (!strcmp(command,"uncompute")) uncompute();
else if (!strcmp(command,"undump")) undump(); else if (!strcmp(command,"undump")) undump();
else if (!strcmp(command,"unfix")) unfix(); else if (!strcmp(command,"unfix")) unfix();
@ -1744,7 +1744,7 @@ void Input::thermo_style()
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
void Input::timers() void Input::timer_command()
{ {
timer->modify_params(narg,arg); timer->modify_params(narg,arg);
} }

View File

@ -126,7 +126,7 @@ class Input : protected Pointers {
void thermo_modify(); void thermo_modify();
void thermo_style(); void thermo_style();
void timestep(); void timestep();
void timers(); void timer_command();
void uncompute(); void uncompute();
void undump(); void undump();
void unfix(); void unfix();