join multi-line strings
This commit is contained in:
@ -319,8 +319,7 @@ void PPPM::init()
|
||||
|
||||
if (order < minorder) error->all(FLERR,"PPPM order < minimum allowed order");
|
||||
if (!overlap_allowed && !gctmp->ghost_adjacent())
|
||||
error->all(FLERR,"PPPM grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"PPPM grid stencil extends beyond nearest neighbor processor");
|
||||
if (gctmp) delete gctmp;
|
||||
|
||||
// adjust g_ewald
|
||||
@ -569,8 +568,7 @@ void PPPM::setup_grid()
|
||||
allocate();
|
||||
|
||||
if (!overlap_allowed && !gc->ghost_adjacent())
|
||||
error->all(FLERR,"PPPM grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"PPPM grid stencil extends beyond nearest neighbor processor");
|
||||
|
||||
// pre-compute Green's function denomiator expansion
|
||||
// pre-compute 1d charge distribution coefficients
|
||||
|
||||
@ -216,8 +216,7 @@ void PPPMDipole::init()
|
||||
|
||||
if (order < minorder) error->all(FLERR,"PPPMDipole order < minimum allowed order");
|
||||
if (!overlap_allowed && !gctmp->ghost_adjacent())
|
||||
error->all(FLERR,"PPPMDipole grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"PPPMDipole grid stencil extends beyond nearest neighbor processor");
|
||||
if (gctmp) delete gctmp;
|
||||
|
||||
// adjust g_ewald
|
||||
@ -375,8 +374,7 @@ void PPPMDipole::setup_grid()
|
||||
allocate();
|
||||
|
||||
if (!overlap_allowed && !gc_dipole->ghost_adjacent())
|
||||
error->all(FLERR,"PPPMDipole grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"PPPMDipole grid stencil extends beyond nearest neighbor processor");
|
||||
|
||||
// pre-compute Green's function denomiator expansion
|
||||
// pre-compute 1d charge distribution coefficients
|
||||
|
||||
@ -201,8 +201,7 @@ void PPPMDipoleSpin::init()
|
||||
|
||||
if (order < minorder) error->all(FLERR,"PPPMDipoleSpin order < minimum allowed order");
|
||||
if (!overlap_allowed && !gctmp->ghost_adjacent())
|
||||
error->all(FLERR,"PPPMDipoleSpin grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"PPPMDipoleSpin grid stencil extends beyond nearest neighbor processor");
|
||||
if (gctmp) delete gctmp;
|
||||
|
||||
// adjust g_ewald
|
||||
|
||||
@ -456,8 +456,7 @@ void PPPMDisp::init()
|
||||
if (order < minorder)
|
||||
error->all(FLERR,"Coulomb PPPMDisp order has been reduced below minorder");
|
||||
if (!overlap_allowed && !gctmp->ghost_adjacent())
|
||||
error->all(FLERR,"PPPMDisp grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"PPPMDisp grid stencil extends beyond nearest neighbor processor");
|
||||
if (gctmp) delete gctmp;
|
||||
|
||||
// adjust g_ewald
|
||||
@ -538,8 +537,7 @@ void PPPMDisp::init()
|
||||
error->all(FLERR,"Dispersion PPPMDisp order has been "
|
||||
"reduced below minorder");
|
||||
if (!overlap_allowed && !gctmp->ghost_adjacent())
|
||||
error->all(FLERR,"Dispersion PPPMDisp grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"Dispersion PPPMDisp grid stencil extends beyond nearest neighbor proc");
|
||||
if (gctmp) delete gctmp;
|
||||
|
||||
// adjust g_ewald_6
|
||||
@ -837,13 +835,11 @@ void PPPMDisp::setup_grid()
|
||||
|
||||
if (function[0]) {
|
||||
if (!overlap_allowed && !gc->ghost_adjacent())
|
||||
error->all(FLERR,"PPPMDisp grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"PPPMDisp grid stencil extends beyond nearest neighbor processor");
|
||||
}
|
||||
if (function[1] + function[2] + function[3]) {
|
||||
if (!overlap_allowed && !gc6->ghost_adjacent())
|
||||
error->all(FLERR,"Dispersion PPPMDisp grid stencil extends "
|
||||
"beyond nearest neighbor processor");
|
||||
error->all(FLERR,"Dispersion PPPMDisp grid stencil extends beyond nearest neighbor proc");
|
||||
}
|
||||
|
||||
// pre-compute Green's function denomiator expansion
|
||||
|
||||
Reference in New Issue
Block a user