Skip to content

Commit

Permalink
Fix a typo in nu_gdh2024 docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
AgenttiX committed Nov 29, 2024
1 parent 5b9a458 commit 66c8c9b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pttools/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,9 @@ def gp(self, w: th.FloatOrArr, phase: th.FloatOrArr) -> th.FloatOrArr:
return self.ge_temp(temp, phase)

def nu_gdh2024(self, w: th.FloatOrArr, phase: th.FloatOrArr = Phase.BROKEN) -> th.FloatOrArr:
r"""$$\nu = \frac{1 - 3\omega}{1 + 3\omega}$$ of eq. 2.11 in :giombi_2024_cs:`\ ` eq. 2.11"""
r"""$$\nu = \frac{1 - 3\omega}{1 + 3\omega}$$
:giombi_2024_cs:`\ ` eq. 2.11
"""
omega = self.omega(w, phase)
return (1 - 3*omega)/(1 + 3*omega)

Expand Down

0 comments on commit 66c8c9b

Please sign in to comment.