remove trailing whitespace

This commit is contained in:
Axel Kohlmeyer 2020-05-08 01:33:16 -04:00
parent 18c77db8c3
commit 9004b47251
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 3 additions and 3 deletions

View File

@ -999,7 +999,7 @@ void AtomVecKokkos::unpack_reverse(int n, int *list, double *buf)
* ------------------------------------------------------------------------- */
void AtomVecKokkos::data_vel(int m, char **values)
{
{
double **v = atom->v;
v[m][0] = utils::numeric(FLERR,values[0],true,lmp);
v[m][1] = utils::numeric(FLERR,values[1],true,lmp);
@ -1013,13 +1013,13 @@ void AtomVecKokkos::data_vel(int m, char **values)
* ------------------------------------------------------------------------- */
void AtomVecKokkos::pack_vel(double **buf)
{
{
double **v = atom->v;
tagint *tag = atom->tag;
int nlocal = atom->nlocal;
sync(Host,V_MASK|TAG_MASK);
for (int i = 0; i < nlocal; i++) {
buf[i][0] = ubuf(tag[i]).d;
buf[i][1] = v[i][0];