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
ME_Radial_bm2:=proc(lambda::algebraic,mu_f::nonnegint,mu_i::nonnegint) if lambda=-1 then error "Singular 1/beta^2 for lambda=1"; fi:
Comparing lambda to -1 seems wrong since elsewhere lambda is required to be greater than 1:
"also note that we require both lambda>1 and lambda'>1"
Is the correct test: lambda <= 1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ME_Radial_bm2:=proc(lambda::algebraic,mu_f::nonnegint,mu_i::nonnegint)
if lambda=-1 then
error "Singular 1/beta^2 for lambda=1";
fi:
Comparing lambda to -1 seems wrong since elsewhere lambda is required to be greater than 1:
"also note that we require both lambda>1 and lambda'>1"
Is the correct test: lambda <= 1
The text was updated successfully, but these errors were encountered: