~ubuntu-branches/debian/sid/lammps/sid

« back to all changes in this revision

Viewing changes to src/min.cpp

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2013-11-20 22:41:36 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20131120224136-tzx7leh606fqnckm
Tags: 0~20131119.git7162cf0-1
* [e65b919] Imported Upstream version 0~20131119.git7162cf0
* [f7bddd4] Fix some problems, introduced by upstream recently.
* [3616dfc] Use wrap-and-sort script.
* [7e92030] Ignore quilt dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
606
606
  while (iarg < narg) {
607
607
    if (strcmp(arg[iarg],"dmax") == 0) {
608
608
      if (iarg+2 > narg) error->all(FLERR,"Illegal min_modify command");
609
 
      dmax = atof(arg[iarg+1]);
 
609
      dmax = force->numeric(FLERR,arg[iarg+1]);
610
610
      iarg += 2;
611
611
    } else if (strcmp(arg[iarg],"line") == 0) {
612
612
      if (iarg+2 > narg) error->all(FLERR,"Illegal min_modify command");