forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@11799 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
2d77df2ec2
commit
42bb280cf9
|
@ -481,7 +481,7 @@ void FixBondBreak::update_topology()
|
|||
}
|
||||
|
||||
for (i = 0; i < nlocal; i++)
|
||||
if (influenced[i]) rebuild_special(i,id1,id2);
|
||||
if (influenced[i]) rebuild_special(i);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
|
@ -613,7 +613,7 @@ void FixBondBreak::break_impropers(int m, tagint id1, tagint id2)
|
|||
may affect 1-3 and 1-4 bonds
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void FixBondBreak::rebuild_special(int m, tagint id1, tagint id2)
|
||||
void FixBondBreak::rebuild_special(int m)
|
||||
{
|
||||
int i,j,n,n1,cn1,cn2,cn3;
|
||||
tagint *slist;
|
||||
|
|
|
@ -70,7 +70,7 @@ class FixBondBreak : public Fix {
|
|||
void break_angles(int, tagint, tagint);
|
||||
void break_dihedrals(int, tagint, tagint);
|
||||
void break_impropers(int, tagint, tagint);
|
||||
void rebuild_special(int, tagint, tagint);
|
||||
void rebuild_special(int);
|
||||
int dedup(int, int, tagint *);
|
||||
|
||||
// DEBUG
|
||||
|
|
Loading…
Reference in New Issue