Commit 51a0b6b4 authored by Richard Berger's avatar Richard Berger
Browse files

Fix data type of molecule array in npair_kokkos.h

This showed up when trying to compile with -DLAMMPS_BIGBIG.
Fixes issue #365
parent f8506fee
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -147,7 +147,8 @@ class NeighborKokkosExecute
  // data from Atom class
  // data from Atom class


  const typename AT::t_x_array_randomread x;
  const typename AT::t_x_array_randomread x;
  const typename AT::t_int_1d_const type,mask,molecule;
  const typename AT::t_int_1d_const type,mask;
  const typename AT::t_tagint_1d_const molecule;
  const typename AT::t_tagint_1d_const tag;
  const typename AT::t_tagint_1d_const tag;
  const typename AT::t_tagint_2d_const special;
  const typename AT::t_tagint_2d_const special;
  const typename AT::t_int_2d_const nspecial;
  const typename AT::t_int_2d_const nspecial;
@@ -184,7 +185,7 @@ class NeighborKokkosExecute
                        const typename AT::t_x_array_randomread &_x,
                        const typename AT::t_x_array_randomread &_x,
                        const typename AT::t_int_1d_const &_type,
                        const typename AT::t_int_1d_const &_type,
                        const typename AT::t_int_1d_const &_mask,
                        const typename AT::t_int_1d_const &_mask,
                        const typename AT::t_int_1d_const &_molecule,
                        const typename AT::t_tagint_1d_const &_molecule,
                        const typename AT::t_tagint_1d_const &_tag,
                        const typename AT::t_tagint_1d_const &_tag,
                        const typename AT::t_tagint_2d_const &_special,
                        const typename AT::t_tagint_2d_const &_special,
                        const typename AT::t_int_2d_const &_nspecial,
                        const typename AT::t_int_2d_const &_nspecial,