convert more styles to use new neighbor list request API, apply clang-format

This commit is contained in:
Axel Kohlmeyer
2022-03-05 21:09:19 -05:00
parent ffb367663d
commit 54e667e491
20 changed files with 1083 additions and 1122 deletions

View File

@ -296,3 +296,10 @@ void NeighRequest::set_kokkos_host(int flag)
{
kokkos_host = flag;
}
void NeighRequest::set_skip(int *_iskip, int **_ijskip)
{
skip = 1;
iskip = _iskip;
ijskip = _ijskip;
}