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

This commit is contained in:
sjplimp
2015-10-21 21:20:23 +00:00
parent 069e25a84b
commit bc1cf9965e
4 changed files with 6 additions and 6 deletions

View File

@ -106,7 +106,7 @@ FixBondBreak::FixBondBreak(LAMMPS *lmp, int narg, char **arg) :
// copy = special list for one atom
// size = ms^2 + ms is sufficient
// b/c in rebuild_special() neighs of all 1-2s are added,
// b/c in rebuild_special_one() neighs of all 1-2s are added,
// then a dedup(), then neighs of all 1-3s are added, then final dedup()
// this means intermediate size cannot exceed ms^2 + ms
@ -463,7 +463,7 @@ void FixBondBreak::update_topology()
if (improperflag) break_impropers(i,id1,id2);
}
if (influenced) rebuild_special(i);
if (influenced) rebuild_special_one(i);
}
int newton_bond = force->newton_bond;
@ -492,7 +492,7 @@ void FixBondBreak::update_topology()
affects 1-3 and 1-4 neighs due to other atom's augmented 1-2 neighs
------------------------------------------------------------------------- */
void FixBondBreak::rebuild_special(int m)
void FixBondBreak::rebuild_special_one(int m)
{
int i,j,n,n1,cn1,cn2,cn3;
tagint *slist;

View File

@ -69,7 +69,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);
void rebuild_special_one(int);
int dedup(int, int, tagint *);
// DEBUG

View File

@ -705,7 +705,7 @@ void FixBondCreate::update_topology()
affects 1-3 and 1-4 neighs due to other atom's augmented 1-2 neighs
------------------------------------------------------------------------- */
void FixBondCreate::rebuild_special(int m)
void FixBondCreate::rebuild_special_one(int m)
{
int i,j,n,n1,cn1,cn2,cn3;
tagint *slist;

View File

@ -78,7 +78,7 @@ class FixBondCreate : public Fix {
void check_ghosts();
void update_topology();
void rebuild_special(int);
void rebuild_special_one(int);
void create_angles(int);
void create_dihedrals(int);
void create_impropers(int);