We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4308c3f commit 4191822Copy full SHA for 4191822
src/pineko/theory.py
@@ -39,7 +39,8 @@ def _check_for_scale_variations(tcard, grid_path):
39
max_al = 0 # We don't do SV for alpha
40
max_as = 1 + int(tcard["PTO"])
41
# In FONLL-B we might need to change max_as
42
- max_as += int(check.is_fonll_mixed(tcard["FNS"], grid.convolutions))
+ if check.is_fonll_mixed(tcard["FNS"], grid.convolutions):
43
+ max_as += 1
44
if not np.isclose(xir, 1.0):
45
check_scvar_evolve(grid, max_as, max_al, check.Scale.REN)
46
if not np.isclose(xif, 1.0) and evolve.sv_scheme(tcard) is None:
0 commit comments