-
Notifications
You must be signed in to change notification settings - Fork 9
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
Not picking up changes in gradient.py #7
Comments
I'm really confused. Commit 5126475 only removed options that generated MacroModel conformational search .com files. |
0cd6a70 |
I'm not sure what you're talking about as a bug still. Here's an example of how things work. Maybe this will help you.
This 1st goes through If The maximum radii method essentially scales all parameter changes to be within whatever radii is given by the user. The user can specify as many max radii as he or she wants. If the calculated If you instead use So, |
When any method in gradient generates parameter changes, these are then run through gradient.check, which checks whether the radius of unscaled parameter changes meets certain user specified conditions (currently, those conditions are given in the __init__ statement of gradient.Gradient). It would first check for max_radii and then for cutoffs. However, if neither were used, it would incorrectly return None rather than returning the unscaled parameter changes. This should fix issue #7.
Can anyone confirm that commit d646465 addresses this and then close the issue? |
Things work well now. |
I saw this commit, 5126475, where the code checks to see if there are any changes. Have we figured out why there are no changes? I have seen instances where a parameter does change the penalty function, and it produces changes in the do_method function, but those changes are not picked up again in the run function.
The text was updated successfully, but these errors were encountered: