Skip to content

Commit

Permalink
Remove more Q2grid-s
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Apr 4, 2023
1 parent 7e6635f commit 90a6534
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion benchmarks/lha_paper_bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def run_lha(self, theory_updates):
theory_updates,
[
{
"Q2grid": [1e4],
"mugrid": [1e2],
"ev_op_iterations": 10,
"interpolation_xgrid": lambertgrid(60).tolist(),
"polarized": True,
Expand Down
4 changes: 2 additions & 2 deletions doc/source/code/IO.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ The benchmark settings are available at :mod:`ekomark.data.operators`.
* - ``interpolation_xgrid``
- :py:obj:`list(float)`
- x-grid at which the |EKO| is computed.
* - ``Q2grid``
* - ``mugrid``
- :py:obj:`list(float)`
- Q2-grid at which the |EKO| is computed (in GeV^2).
- target grid at which the |EKO| is computed (in GeV).
* - ``interpolation_is_log``
- :py:obj:`bool`
- If ``True`` use logarithmic interpolation.
Expand Down
2 changes: 1 addition & 1 deletion src/ekomark/navigator/navigator.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def fill_operators(self, op, obj):
+ f"{'log' if op['interpolation_is_log'] else 'x'}"
+ f"^{op['interpolation_polynomial_degree']}"
)
obj["Q2grid"] = op["Q2grid"]
obj["mugrid"] = op["mugrid"]
obj["max_ord"] = op["ev_op_max_order"]
obj["iters"] = op["ev_op_iterations"]
obj["skip_ns"] = op["debug_skip_non_singlet"]
Expand Down

0 comments on commit 90a6534

Please sign in to comment.