Skip to content

Commit

Permalink
Merge 380b559 into fa929ff
Browse files Browse the repository at this point in the history
  • Loading branch information
Wikstahl committed Mar 14, 2023
2 parents fa929ff + 380b559 commit 2ca8d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qutip_qip/pulse.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ def _fill_coeff(old_coeffs, old_tlist, full_tlist, args=None, tol=1.0e-10):
old_coeffs = np.concatenate([old_coeffs, [0]])
new_n = len(full_tlist)
old_ind = 0 # index for old coeffs and tlist
new_coeff = np.zeros(new_n)
new_coeff = np.zeros(new_n, dtype=old_coeffs.dtype)
for new_ind in range(new_n):
t = full_tlist[new_ind]
if old_tlist[0] - t > tol:
Expand Down

0 comments on commit 2ca8d4b

Please sign in to comment.