-
Notifications
You must be signed in to change notification settings - Fork 33
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
Issue 735: Fix truncation slicing when t < truncation #736
Conversation
This is how benchmark results would change (along with a 95% confidence interval in relative change) if c7aa214 is merged into main:
|
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.
Great!
This is how benchmark results would change (along with a 95% confidence interval in relative change) if acf754f is merged into main:
|
Hmm how odd this works locally for me... |
This is how benchmark results would change (along with a 95% confidence interval in relative change) if bcf40f3 is merged into main:
|
Yes, strange, seems to call |
Maybe its the order things are loaded. I've tried to hack around it by renaming the stan function just after its exposed. Not ideal but good enough I think. |
This is how benchmark results would change (along with a 95% confidence interval in relative change) if 1adf432 is merged into main:
|
I'm at loss at what's going on here - can't reproduce this locally either (even e.g. running We could rename the function which would be annoying but perhaps the easiest option, or ditch the tests, or try to understand what exactly is going on here (e.g. print the return values of the |
So I think we want tests over anything else so voted here to change the name to avoid the collision. Not ideal at all though obviously |
Co-authored-by: Sebastian Funk <[email protected]>
This is how benchmark results would change (along with a 95% confidence interval in relative change) if 6e5dff3 is merged into main:
|
@jamesmbaazam as @sbfnk is on holidays if you get chance to give this a look that would be great. I think its mostly there. I am unhappy about the need to name change |
Note this PR also starts adding docs as in #740 and improves stan unit test coverage (no way I know of getting some like code coverage for this). |
Thanks for the fix, Sam. I'm taking a look now. |
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.
Thanks for fixing this @seabbs. It looks good to me.
Co-authored-by: James Azam <[email protected]>
Description
This PR closes #735.
It adds:
It does not:
Initial submission checklist
devtools::test()
anddevtools::check()
).devtools::document()
).lintr::lint_package()
).After the initial Pull Request