Skip to content

Commit

Permalink
installation error on intel
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzsp committed Nov 18, 2024
1 parent 5c42d84 commit 7484cf3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion few/trajectory/inspiral.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,8 @@ def get_rhs_ode(

y0 = np.array([y1, y2, y3, Phi_phi0, Phi_theta0, Phi_r0])

out = self.inspiral_generator.func(np.r_[y0, *args])
y0_and_args = np.concatenate(([y0], args))
out = self.inspiral_generator.func(y0_and_args)
# out = self.inspiral_generator.func(np.r_[y0, *args])

return out

0 comments on commit 7484cf3

Please sign in to comment.