Add missing return value in pair_snap_kokkos

This commit is contained in:
Stan Moore 2018-01-15 11:01:07 -07:00
parent 7a78875911
commit 72b479d42e
1 changed files with 2 additions and 0 deletions

View File

@ -282,6 +282,8 @@ double PairSNAPKokkos<DeviceType>::init_one(int i, int j)
double cutone = PairSNAP::init_one(i,j);
k_cutsq.h_view(i,j) = k_cutsq.h_view(j,i) = cutone*cutone;
k_cutsq.template modify<LMPHostType>();
return cutone;
}
/* ----------------------------------------------------------------------