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
DAMP
In #140, we have changed the convention for DAMP: 0, but this line has not been fixed accordingly.
DAMP: 0
pineko/src/pineko/fonll.py
Line 238 in 68c41e7
It should be replaced with:
is_damped = damp != -1
The text was updated successfully, but these errors were encountered:
Just to mention it: in a sense, a common part would be to put
is_damped = damp > 0
but I believe that being more specific would be better (in case you made an error somewhere, there are more chances that you can predict the outcome).
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In #140, we have changed the convention for
DAMP: 0
, but this line has not been fixed accordingly.pineko/src/pineko/fonll.py
Line 238 in 68c41e7
It should be replaced with:
The text was updated successfully, but these errors were encountered: