# timestepping loop
for n = 0:Nt
Nn1f = copy(Nnf);Though unrelated to unrolling, here copy seems to be redundant since Nnf is assigned to another arrray after that.
# timestepping loop
for n = 0:Nt
Nn1f = copy(Nnf);Though unrelated to unrolling, here copy seems to be redundant since Nnf is assigned to another arrray after that.