Skip to content

Commit c106f64

Browse files
committed
Removed wrong test on factorization scale for schemeB
1 parent 6ec65ac commit c106f64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pineko/theory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def fk(self, name, grid_path, tcard, pdf):
378378
raise ValueError(
379379
"Renormalization scale variations are not available for this grid"
380380
)
381-
if not (np.isclose(xif, 1.0) and np.isclose(ftr, 1.0)):
381+
if not np.isclose(xif, 1.0):
382382
is_fact_as, is_fact_al = check.contains_fact(grid, max_as, max_al)
383383
if not (is_fact_as and is_fact_al):
384384
raise ValueError(

0 commit comments

Comments
 (0)