Skip to content

Commit

Permalink
Another merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
dfm committed Apr 16, 2024
1 parent bef10d0 commit 790fad7
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/exoplanet/orbits/dur_to_ecc.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,7 @@ def duration_to_eccentricity(
s = pt.sin(kwargs["omega"])
umax_inv = pt.switch(pt.lt(s, 0), pt.sqrt(1 - s**2), 1.0)

<<<<<<< HEAD
const = period * tt.shape_padright(r_star) * tt.sqrt((1 + ror) ** 2 - b**2)
=======
const = (
period * pt.shape_padright(r_star) * pt.sqrt((1 + ror) ** 2 - b**2)
)
>>>>>>> 2f34493e4896c67ba726ae7550dd70173534c158
const = period * pt.shape_padright(r_star) * pt.sqrt((1 + ror) ** 2 - b**2)
const /= np.pi * a

u = duration / const
Expand Down

0 comments on commit 790fad7

Please sign in to comment.