We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is not too important, but currently we are defining a lot of single functions with cryptic names that cover some cases, e.g.
def Gammap0(w: Wilson, q2, El): return 2 * Gammat0p(w, q2, El) def Gammam0(w: Wilson, q2, El): return 2 * Gamma0m(w, q2, El) def Gammam2(w: Wilson, q2, El): return -2 * Gamma0m(w, q2, El) def Gammap2(w: Wilson, q2, El): return 2 * Gamma00p(w, q2, El) def Gammam1(w: Wilson, q2, El): return 0. def Gammap1(w: Wilson, q2, El): return 2 * GammaI0p(w, q2, El)
for me it would perhaps be clearer if we implement that in one function:
def Gamma(sign, number, w, q2, El): if sign == "+" and number == 1: return blah else if: return bluh .... else: raise ValueError
The text was updated successfully, but these errors were encountered:
yes thats a good idea
Sorry, something went wrong.
No branches or pull requests
This is not too important, but currently we are defining a lot of single functions with cryptic names that cover some cases, e.g.
for me it would perhaps be clearer if we implement that in one function:
The text was updated successfully, but these errors were encountered: