-
Notifications
You must be signed in to change notification settings - Fork 6
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
Updated AdvancedMH.jl wrapper and fixed compatibility issue. #322
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`quantise_diatomic` is now able to process a single configuration or a vector of multiple configurations. This improves performance for multiple configurations, as only one potential-specific binding curve is generated to analyse all configurations.
Added functions to calculate classical translational, rotational and vibrational energies from the ro-vibrational quantum numbers from quantise_diatomic.
AdvancedMH or one of its dependencies may have updated a keyword from "initial_config" to "initial_params". This caused NQCD to not deliver initial positions to the sampling chain correctly.
- Update ThermalMonteCarlo.jl with new keywords movement_ratio and stop_ratio, where movement_ratio=1-stop_ratio - Add warning for deprecated kwargs. - Update documentation with information about new keywords
The last commit didn't actually pin MKL_jll like I wanted, but for some reason, tests are working now... |
There are some additional changes in here that aren't related to this pull request. I've opened a new one: #325 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#320 was caused due to a breaking change in how AdvancedMH.jl handles the
init_params
keyword.initial_params
is now required instead. I've removed compatibility for lower versions of AdvancedMH.jl to be safe.#321 Has a non-breaking change to the movement-related keywords. Using the old
move_ratio
andinternal_ratio
will now produce a warning. Old keywords could be removed entirely after some time.