Commit d2281503 authored by Donatas Surblys's avatar Donatas Surblys
Browse files

add centroid virial argument (cvatom) to ThrOMP::ev_setup_thr, and modify all...

add centroid virial argument (cvatom) to ThrOMP::ev_setup_thr, and modify all related styles to pass a NULL pointer to pass compilation
parent 25b6de20
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ void AngleCharmmOMP::compute(int eflag, int vflag)
    loop_setup_thr(ifrom, ito, tid, inum, nthreads);
    ThrData *thr = fix->get_thr(tid);
    thr->timer(Timer::START);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, thr);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, NULL, thr);

    if (inum > 0) {
      if (evflag) {
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ void AngleClass2OMP::compute(int eflag, int vflag)
    loop_setup_thr(ifrom, ito, tid, inum, nthreads);
    ThrData *thr = fix->get_thr(tid);
    thr->timer(Timer::START);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, thr);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, NULL, thr);

    if (inum > 0) {
      if (evflag) {
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ void AngleCosineDeltaOMP::compute(int eflag, int vflag)
    loop_setup_thr(ifrom, ito, tid, inum, nthreads);
    ThrData *thr = fix->get_thr(tid);
    thr->timer(Timer::START);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, thr);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, NULL, thr);

    if (inum > 0) {
      if (evflag) {
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ void AngleCosineOMP::compute(int eflag, int vflag)
    loop_setup_thr(ifrom, ito, tid, inum, nthreads);
    ThrData *thr = fix->get_thr(tid);
    thr->timer(Timer::START);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, thr);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, NULL, thr);

    if (inum > 0) {
      if (evflag) {
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ void AngleCosinePeriodicOMP::compute(int eflag, int vflag)
    loop_setup_thr(ifrom, ito, tid, inum, nthreads);
    ThrData *thr = fix->get_thr(tid);
    thr->timer(Timer::START);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, thr);
    ev_setup_thr(eflag, vflag, nall, eatom, vatom, NULL, thr);

    if (inum > 0) {
      if (evflag) {
Loading