Commit b70c670a authored by sjplimp's avatar sjplimp Committed by GitHub
Browse files

Merge pull request #383 from stanmoore1/rshan_class2_kk

Kokkos version of class2 bond, angle, dihedral, and improper from Ray Shan
parents 1d17cae4 5f93fad0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@

angle_style class2 command :h3
angle_style class2/omp command :h3
angle_style class2/kk command :h3

[Syntax:]

+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@

bond_style class2 command :h3
bond_style class2/omp command :h3
bond_style class2/kk command :h3

[Syntax:]

+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@

dihedral_style class2 command :h3
dihedral_style class2/omp command :h3
dihedral_style class2/kk command :h3

[Syntax:]

+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@

improper_style class2 command :h3
improper_style class2/omp command :h3
improper_style class2/kk command :h3

[Syntax:]

+2 −0
Original line number Diff line number Diff line
@@ -41,6 +41,8 @@ AngleClass2::AngleClass2(LAMMPS *lmp) : Angle(lmp) {}

AngleClass2::~AngleClass2()
{
  if (copymode) return;

  if (allocated) {
    memory->destroy(setflag);
    memory->destroy(setflag_a);
Loading