Skip to content

Commit

Permalink
very minor argument fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Fu committed Jul 17, 2024
1 parent 431e3d6 commit 9f5780b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/simsopt/geo/curve.py
Original file line number Diff line number Diff line change
Expand Up @@ -1519,8 +1519,8 @@ def dkappa_by_dcoeff_vjp(self, v):
"""
return Derivative({
self: self.dkappa_by_dcoeff_vjp_jax(self.get_dofs(), v),
self.surf: self.dkappa_by_dsurf_vjp_jax(self.surf.get_dofs(), v)
self: self.dkappa_by_dcoeff_vjp_jax(self.get_dofs(), self.surf.get_dofs(), v),
self.surf: self.dkappa_by_dsurf_vjp_jax(self.get_dofs(), self.surf.get_dofs(), v)
})

# TORSION
Expand Down

0 comments on commit 9f5780b

Please sign in to comment.