Skip to content

Commit

Permalink
Remove pol timelike
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn authored and alecandido committed Jan 30, 2023
1 parent ece889b commit 07aa331
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 38 deletions.
4 changes: 2 additions & 2 deletions src/eko/evolution_operator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def quad_ker(
if ker_base.is_singlet:
if is_polarized:
if is_time_like:
gamma_singlet = ad_pt.gamma_singlet(order, ker_base.n, nf)
raise NotImplementedError("Polarized, time-like is not implemented")
else:
gamma_singlet = ad_ps.gamma_singlet(order, ker_base.n, nf)
else:
Expand Down Expand Up @@ -223,7 +223,7 @@ def quad_ker(
else:
if is_polarized:
if is_time_like:
gamma_ns = ad_pt.gamma_ns(order, mode0, ker_base.n, nf)
raise NotImplementedError("Polarized, time-like is not implemented")
else:
gamma_ns = ad_ps.gamma_ns(order, mode0, ker_base.n, nf)
else:
Expand Down
4 changes: 2 additions & 2 deletions src/eko/evolution_operator/operator_matrix_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def quad_ker(
indices = {21: 0, 100: 1, 90: 2}
if is_polarized:
if is_time_like:
A = ome_pt.A_singlet(order, ker_base.n, sx, nf, L, is_msbar, sx_ns)
raise NotImplementedError("Polarized, time-like is not implemented")
else:
A = ome_ps.A_singlet(order, ker_base.n, sx, nf, L, is_msbar, sx_ns)
else:
Expand All @@ -169,7 +169,7 @@ def quad_ker(
indices = {200: 0, 91: 1}
if is_polarized:
if is_time_like:
A = ome_us.A_non_singlet(order, ker_base.n, sx, nf, L)
raise NotImplementedError("Polarized, time-like is not implemented")
else:
A = ome_us.A_non_singlet(order, ker_base.n, sx, nf, L)
else:
Expand Down
21 changes: 0 additions & 21 deletions src/ekore/anomalous_dimensions/polarized/time_like/__init__.py

This file was deleted.

13 changes: 0 additions & 13 deletions src/ekore/operator_matrix_elements/polarized/time_like/__init__.py

This file was deleted.

0 comments on commit 07aa331

Please sign in to comment.