Observation: commit 7d768c9 removed q_fin and q_points from the list of arguments to construct_eko_cards:
|
def construct_eko_cards( |
|
nnpdf_theory, |
|
x_grid, |
|
op_card_dict: Optional[Dict[str, Any]] = None, |
|
theory_card_dict: Optional[Dict[str, Any]] = None, |
|
legacy40: bool = False, |
|
): |
This breaks the call to construct_eko_cards in evolven3fit.py:
|
tcard, opcard = eko_utils.construct_eko_cards( |
|
nnpdf_theory, |
|
args.q_fin, |
|
args.q_points, |
|
x_grid, |
|
op_card_info, |
|
theory_card_info, |
|
args.legacy40, |
|
) |
This call should be updated
Observation: commit 7d768c9 removed
q_finandq_pointsfrom the list of arguments toconstruct_eko_cards:nnpdf/n3fit/src/evolven3fit/eko_utils.py
Lines 37 to 43 in ab21423
This breaks the call to
construct_eko_cardsinevolven3fit.py:nnpdf/n3fit/src/n3fit/scripts/evolven3fit.py
Lines 186 to 194 in f67898d
This call should be updated