Skip to content
Snippets Groups Projects
Commit 868d95f0 authored by sjplimp's avatar sjplimp Committed by GitHub
Browse files

Merge pull request #352 from akohlmey/fix-skip-with-ghost-issue

Fix skip with ghost issue
parents a5ff3543 b5cb74bd
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,8 @@ ...@@ -18,7 +18,8 @@
NPairStyle(skip/omp, NPairStyle(skip/omp,
NPairSkip, NPairSkip,
NP_SKIP | NP_HALF | NP_FULL | NP_NSQ | NP_BIN | NP_MULTI | NP_SKIP | NP_HALF | NP_FULL | NP_HALFFULL |
NP_NSQ | NP_BIN | NP_MULTI |
NP_NEWTON | NP_NEWTOFF | NP_ORTHO | NP_TRI | NP_OMP) NP_NEWTON | NP_NEWTOFF | NP_ORTHO | NP_TRI | NP_OMP)
NPairStyle(skip/half/respa/omp, NPairStyle(skip/half/respa/omp,
...@@ -44,6 +45,12 @@ NPairStyle(skip/size/off2on/oneside/omp, ...@@ -44,6 +45,12 @@ NPairStyle(skip/size/off2on/oneside/omp,
NP_NSQ | NP_BIN | NP_MULTI | NP_NEWTON | NP_NEWTOFF | NP_NSQ | NP_BIN | NP_MULTI | NP_NEWTON | NP_NEWTOFF |
NP_ORTHO | NP_TRI | NP_OMP) NP_ORTHO | NP_TRI | NP_OMP)
NPairStyle(skip/ghost/omp,
NPairSkip,
NP_SKIP | NP_HALF | NP_FULL | NP_HALFFULL |
NP_NSQ | NP_BIN | NP_MULTI |
NP_NEWTON | NP_NEWTOFF | NP_ORTHO | NP_TRI | NP_OMP | NP_GHOST)
#endif #endif
/* ERROR/WARNING messages: /* ERROR/WARNING messages:
......
...@@ -16,9 +16,15 @@ ...@@ -16,9 +16,15 @@
NPairStyle(skip, NPairStyle(skip,
NPairSkip, NPairSkip,
NP_SKIP | NP_HALF | NP_FULL | NP_HALFFULL | NP_SKIP | NP_HALF | NP_FULL | NP_HALFFULL |
NP_NSQ | NP_BIN | NP_MULTI | NP_NSQ | NP_BIN | NP_MULTI |
NP_NEWTON | NP_NEWTOFF | NP_ORTHO | NP_TRI) NP_NEWTON | NP_NEWTOFF | NP_ORTHO | NP_TRI)
NPairStyle(skip/ghost,
NPairSkip,
NP_SKIP | NP_HALF | NP_FULL | NP_HALFFULL |
NP_NSQ | NP_BIN | NP_MULTI |
NP_NEWTON | NP_NEWTOFF | NP_ORTHO | NP_TRI | NP_GHOST)
#else #else
#ifndef LMP_NPAIR_SKIP_H #ifndef LMP_NPAIR_SKIP_H
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment