Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Time Like Splitting Functions #232

Merged
merged 45 commits into from
Apr 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
902ca4b
clean slate
t7phy Mar 15, 2023
ff9dd6d
as1
t7phy Mar 15, 2023
c17e676
as2
t7phy Mar 15, 2023
3628dae
refs
t7phy Mar 15, 2023
1b6c72b
as3
t7phy Mar 15, 2023
51b1be5
init
t7phy Mar 15, 2023
3217f3a
print time-like during computation
t7phy Mar 15, 2023
e9a1141
lhapdf benchmarks
t7phy Mar 15, 2023
d129b56
test_init NA
t7phy Mar 15, 2023
241f052
bench specs
t7phy Mar 16, 2023
d05f541
Fix FF benchmark op cards
felixhekhorn Mar 24, 2023
863ff8b
bench
t7phy Mar 25, 2023
a0bcd13
minor changes
t7phy Mar 25, 2023
116689a
as2.singlet correction
t7phy Mar 25, 2023
0ff1a53
remove unused var
t7phy Mar 25, 2023
9d88c3f
remove unused var
t7phy Mar 25, 2023
faa76c1
remove unused var
t7phy Mar 25, 2023
a83b89f
tests evo_oper init
t7phy Mar 27, 2023
9cfede2
removed commented test blocks
t7phy Mar 27, 2023
86fb579
Merge branch 'master' into tlu_ad_v2
felixhekhorn Mar 27, 2023
9ceb2e5
as2 fixes and benchmark updated to exact
t7phy Mar 27, 2023
370c540
few suggestions implemented
t7phy Mar 28, 2023
e501b9d
few suggestions implemented 2
t7phy Mar 28, 2023
a774d77
TL docs
t7phy Mar 29, 2023
f926ba0
Merge branch 'master' into tlu_ad_v2
felixhekhorn Apr 3, 2023
38f4978
Update FF doc
felixhekhorn Apr 3, 2023
3dc1963
test as1
t7phy Apr 3, 2023
8ce9bb4
test as2
t7phy Apr 3, 2023
f41d602
test as3
t7phy Apr 3, 2023
dfceede
test init
t7phy Apr 3, 2023
efe50bf
ad citations
t7phy Apr 3, 2023
8b50c67
q2 to mu
t7phy Apr 3, 2023
2a93ed6
tests edits
t7phy Apr 4, 2023
d1baa74
move testing and benchmark info to docs
t7phy Apr 5, 2023
2278f9e
add comments to tests
t7phy Apr 5, 2023
d315044
comment to docstrings
t7phy Apr 5, 2023
80be9b6
word replacement
t7phy Apr 5, 2023
99847d5
suggested fixes
t7phy Apr 5, 2023
f248b78
fix MELA abbreviation
t7phy Apr 5, 2023
7e325cf
Merge branch 'master' into tlu_ad_v2
felixhekhorn Apr 5, 2023
193afc8
Fix left-over mu2grid in lhapdf_utils
felixhekhorn Apr 5, 2023
b8d8ab5
Appease a bit pre-commit
felixhekhorn Apr 5, 2023
6d90ae5
More pre-commit fixes
felixhekhorn Apr 5, 2023
316fecc
Normalize abbr list in docs
felixhekhorn Apr 5, 2023
c6ae8b5
Fix some whitespace
felixhekhorn Apr 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions tests/ekore/anomalous_dimensions/unpolarized/time_like/test_as1.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# it is possible to obtain result values for testing from vbertone/MELA repo

import numpy as np

import ekore.anomalous_dimensions.unpolarized.time_like.as1 as ad_as1
import ekore.anomalous_dimensions.unpolarized.space_like.as1 as sl_ad_as1
import ekore.harmonics.w1 as w1

NF = 5

Expand All @@ -9,6 +13,11 @@ def test_qq():
np.testing.assert_almost_equal(
ad_as1.gamma_qq(1), 0
)
s1 = w1.S1(1)
np.testing.assert_almost_equal(
ad_as1.gamma_qq(1), sl_ad_as1.gamma_ns(1, s1)
)


def test_qg():
np.testing.assert_almost_equal(
Expand All @@ -24,3 +33,7 @@ def test_gg():
np.testing.assert_almost_equal(
ad_as1.gamma_gg(2, NF), 10/3
)
s1 = w1.S1(2)
np.testing.assert_almost_equal(
ad_as1.gamma_gg(2, NF), sl_ad_as1.gamma_gg(2, s1, NF)
)
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# it is possible to obtain result values for testing from vbertone/MELA repo

import numpy as np

import ekore.anomalous_dimensions.unpolarized.time_like.as2 as ad_as2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# it is possible to obtain result values for testing from vbertone/MELA repo
t7phy marked this conversation as resolved.
Show resolved Hide resolved

import numpy as np

import ekore.anomalous_dimensions.unpolarized.time_like.as3 as ad_as3
Expand Down