Skip to content

Commit

Permalink
fix min->minimum (#196)
Browse files Browse the repository at this point in the history
Co-authored-by: Sandro Dias Pinto Vitenti <vitenti@uel.br>
  • Loading branch information
tilmantroester and vitenti authored Oct 20, 2022
1 parent 53262e9 commit 51be74a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions firecrown/likelihood/gauss_family/statistic/two_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,9 @@ def read(self, sacc_data):
self.theory_window_function = sacc_data.get_bandpower_windows(self.sacc_inds)
if self.theory_window_function is not None:
ell_config = {**ELL_FOR_XI_DEFAULTS}
ell_config["max"] = self.theory_window_function.values[-1]
ell_config["min"] = max(
ell_config["min"], self.theory_window_function.values[0]
ell_config["maximum"] = self.theory_window_function.values[-1]
ell_config["minimum"] = max(
ell_config["minimum"], self.theory_window_function.values[0]
)
_ell_or_theta = _ell_for_xi(**ell_config)

Expand Down

0 comments on commit 51be74a

Please sign in to comment.