-
Notifications
You must be signed in to change notification settings - Fork 2
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
Rustify QED #416
base: master
Are you sure you want to change the base?
Rustify QED #416
Conversation
/// recursive harmonics | ||
S1ph, | ||
S2ph, | ||
S3ph, | ||
S1p2, | ||
G3p2, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure we want to keep those - can we inline them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what do you mean? Could you please provide an example?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of
let g3N = c.get(K::G3);
let g3Np2 = c.get(K::G3p2);
we do
let g3N = c.get(K::G3);
let g3Np2 = g3N + f;
where
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am afraid I don t understand. How do you compute f analytically beforehand? Do you mean to move g_functions::g3(self.n + 2., self.get(K::S1p2))
out of the cache?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
out of the cache?
yes
How do you compute f analytically beforehand?
Mathematica 🙃 let's try to use a short cut: @giacomomagni can you compute quickly this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so I think
which I computed half with pen and paper and half Mathematica and checked for
to be more precise: for
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok thank you! I ll first try to get things working as they are and then I will add this
Co-authored-by: Felix Hekhorn <[email protected]>
aem1.rs
anomalous_dimension::unpolarized::spacelike.rs
missing QED ingredients