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.
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
Add
getparameters
andsetparameters!!
#86Add
getparameters
andsetparameters!!
#86Changes from 15 commits
e2bdfb7
7fa8de0
0a4fd17
28bdf91
86a7826
e19cea7
d86499f
bce436d
21f4d56
de0e5b2
23b9119
b9f476c
f7b6096
4ca57b0
abebd59
d1d4642
c6c9554
d9f8585
600d36c
1bfbef1
d9480d1
3f861bf
ddb588c
d6ab10a
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Check warning on line 90 in src/AbstractMCMC.jl
Codecov / codecov/patch
src/AbstractMCMC.jl#L89-L90
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we really want to use
Base.values
here? I think adding this documentation should be considered type piracy and would only be allowed if we define it only for our own types as arguments (which we can't do here).Unrelated, why did you use
@doc
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, I do agree with this. I'm coming around to
values
not being the best idea.IIRC you need
@doc
here to be able to add the docstring? I.e. if you remove the@doc
it won't be added to the docstring ofBase.values
.