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

This commit is contained in:
sjplimp 2015-01-05 15:48:45 +00:00
parent 44d9a3bf59
commit 1b31895cee
2 changed files with 2 additions and 2 deletions

View File

@ -841,7 +841,7 @@ void FixBondBreak::print_copy(const char *str, tagint m,
double FixBondBreak::compute_vector(int n)
{
if (n == 1) return (double) breakcount;
if (n == 0) return (double) breakcount;
return (double) breakcounttotal;
}

View File

@ -1374,7 +1374,7 @@ int FixBondCreate::unpack_exchange(int nlocal, double *buf)
double FixBondCreate::compute_vector(int n)
{
if (n == 1) return (double) createcount;
if (n == 0) return (double) createcount;
return (double) createcounttotal;
}