Removed debug print and comment.

This commit is contained in:
Stefan Paquay 2018-07-06 11:31:48 -04:00
parent 24405217d0
commit db75232957
2 changed files with 0 additions and 5 deletions

View File

@ -44,10 +44,6 @@ FixEnforce2DKokkos<DeviceType>::FixEnforce2DKokkos(LAMMPS *lmp, int narg, char *
template <class DeviceType>
void FixEnforce2DKokkos<DeviceType>::setup(int vflag)
{
if( comm->me == 0 ){
fprintf(screen, "omega, angmom and torque flags are %d, %d, %d\n",
atomKK->omega_flag, atomKK->angmom_flag, atomKK->torque_flag );
}
post_force(vflag);
}

View File

@ -67,7 +67,6 @@ struct FixEnforce2DKokkosPostForceFunctor {
KOKKOS_INLINE_FUNCTION
void operator()(const int i) const {
// c.template? Really C++?
c.template post_force_item <omega_flag, angmom_flag, torque_flag>(i);
}
};