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

This commit is contained in:
sjplimp
2014-10-30 16:11:27 +00:00
parent 13f65f7f18
commit bdffea2ea7
2 changed files with 2 additions and 5 deletions

View File

@ -20,7 +20,4 @@ neigh_modify delay 0 every 20 check no
fix 1 all nve
fix 2 all external pf/callback 1 1
run 10

View File

@ -13,7 +13,7 @@
// c++_driver = simple example of how an umbrella program
// can invoke LAMMPS as a library on some subset of procs
// Syntax: c++_driver P in.lammps
// Syntax: simpleCC P in.lammps
// P = # of procs to run LAMMPS on
// must be <= # of procs the driver code itself runs on
// in.lammps = LAMMPS input script
@ -40,7 +40,7 @@ int main(int narg, char **arg)
MPI_Init(&narg,&arg);
if (narg != 3) {
printf("Syntax: c++_driver P in.lammps\n");
printf("Syntax: simpleCC P in.lammps\n");
exit(1);
}