Skip to content

Commit

Permalink
Attempt fix for benchmark_msbar
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn authored and alecandido committed Mar 10, 2023
1 parent 916865e commit b6f6015
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions benchmarks/eko/benchmark_msbar_evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ def update_theory(theory: TheoryCard):
theory.couplings.alphaem.value = 0.007496
theory.couplings.num_flavs_ref = 5
theory.quark_masses_scheme = QuarkMassScheme.MSBAR
theory.quark_masses.c = QuarkMassRef(value=1.5, scale=18)
theory.quark_masses.b = QuarkMassRef(value=4.1, scale=20)
theory.quark_masses.t = QuarkMassRef(value=175.0, scale=175.0)
theory.quark_masses.c = QuarkMassRef([1.5, 18])
theory.quark_masses.b = QuarkMassRef([4.1, 20])
theory.quark_masses.t = QuarkMassRef([175.0, 175.0])


@pytest.mark.isolated
Expand All @@ -35,8 +35,8 @@ def benchmark_APFEL_msbar_evolution(
):
update_theory(theory_card)
bench_values = dict(zip(np.power([1, 96, 150], 2), [3, 5, 5]))
theory_card.quark_masses.c = QuarkMassRef(value=1.4, scale=2.0)
theory_card.quark_masses.b = QuarkMassRef(value=4.5, scale=4.5)
theory_card.quark_masses.c = QuarkMassRef([1.4, 2.0])
theory_card.quark_masses.b = QuarkMassRef([4.5, 4.5])
coupl = theory_card.couplings
qmasses = theory_card.quark_masses

Expand Down

0 comments on commit b6f6015

Please sign in to comment.