Skip to content

Commit

Permalink
fix: missing default argument for stacked nufft.
Browse files Browse the repository at this point in the history
  • Loading branch information
paquiteau committed Feb 10, 2025
1 parent 48bc2ee commit 6bf2bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mrinufft/operators/stacked.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ def _adj_op_calibless_device(self, coeffs, img):
img = img.reshape(B, C, *XYZ)
return img

def get_lipschitz_cst(self, max_iter, **kwargs):
def get_lipschitz_cst(self, max_iter=10, **kwargs):
"""Return the Lipschitz constant of the operator.
Parameters
Expand Down

0 comments on commit 6bf2bdf

Please sign in to comment.