New flag DummiesAllowed added. When set to .false. no dummy atoms are
allowed, meaning that all neighbors of nonlocal atoms must be repatoms
themselves. If the flag is set to false and dummies are detected in
a status calculation, adaption is triggered until there are no more
dummies. If using the NR solver no changes are necessary to the input
file besides setting the appropriate flag. For the CG solver the
solver must be placed inside an additional loop with a status,update
command:
loop,,5
solve,cg,1.0,10000,1
status,update
convergence,force
next
The reason is that neighbor lists are updated inside the CG solver.
This can result in dummy atoms being generated. It this happens and
dummies are not allowed, the CG solver will exit with a warning.
The loop above handles this through the status,update command
which will trigger a full status calculation and refine the mesh
to remove the dummies. (ET)