Skip to content

Commit a8badda

Browse files
committed
misc: Typo
1 parent 3b1c014 commit a8badda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

devito/timestepping/superstep.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def superstep_solution_transfer(old, new, new_p, nt):
8383
# This method is completely generic for future development, but currently
8484
# only time_order == 2 is implemented!
8585
idx = nt % (old.time_order + 1) if old.save is None else -1
86-
for ii in range(old.time_order + 1):
86+
for ii in range(old.time_order):
8787
new.data[ii, :] = old.data[idx - ii - 1]
8888
new_p.data[ii, :] = old.data[idx - ii - 2]
8989

0 commit comments

Comments
 (0)