Skip to content

Commit

Permalink
Removed wrong test on factorization scale for schemeB
Browse files Browse the repository at this point in the history
  • Loading branch information
andreab1997 committed Sep 12, 2022
1 parent 6ec65ac commit c106f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pineko/theory.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def fk(self, name, grid_path, tcard, pdf):
raise ValueError(
"Renormalization scale variations are not available for this grid"
)
if not (np.isclose(xif, 1.0) and np.isclose(ftr, 1.0)):
if not np.isclose(xif, 1.0):
is_fact_as, is_fact_al = check.contains_fact(grid, max_as, max_al)
if not (is_fact_as and is_fact_al):
raise ValueError(
Expand Down

0 comments on commit c106f64

Please sign in to comment.