This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Description
local_forcefield_rhs[i, :] = forcefield_rhe[i, :]
The above line will try to generate two code copies....one where it is proven there is no overlap and another where there could be overlap. If there could be overlap then an intermediate array must be created which requires NRT at the moment. So, even if your particular usage doesn't need to allocate it, the analysis to determine that isn't done at compile time but handled at runtime and so will still fail.