Skip to content

Commit

Permalink
bug fix in pairlist
Browse files Browse the repository at this point in the history
  • Loading branch information
hansenniels committed Jan 20, 2014
1 parent d1e4872 commit e3e12ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gromosXX/VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MD_MAJOR_VERSION=1
MD_MINOR_VERSION=2
MD_MICRO_VERSION=3
MD_MICRO_VERSION=4
Original file line number Diff line number Diff line change
Expand Up @@ -989,9 +989,9 @@ void interaction::Extended_Grid_Pairlist_Algorithm::_update_perturbed
// do only add the atoms to the pairlist if we are not doing
// CUDA
if (no_cuda)
pairlist.solvent_short[a1].push_back(a2);
pairlist.solvent_long[a1].push_back(a2);
#else
pairlist.solvent_short[a1].push_back(a2);
pairlist.solvent_long[a1].push_back(a2);
#endif
DEBUG(10,"\t\t\tsolvent-solvent: add a2 to a1 solvent longrange pairlist");
}
Expand Down

0 comments on commit e3e12ca

Please sign in to comment.