-
-
Notifications
You must be signed in to change notification settings - Fork 795
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
bench: update random value generation #6430
Conversation
Coverage Report
The above coverage report was generated for the changes in this PR. |
With this PR almost all the packages of |
@@ -46,10 +46,11 @@ bench( pkg, function benchmark( b ) { | |||
var y; | |||
var i; | |||
|
|||
x = -discreteUniform( 100, 0, 78 ); |
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.
This doesn't work. discreteUniform( 100, 0, 78 );
returns an array and we cannot just stick a -
in front to get negative values. Instead, please directly draw from the desired distribution, i.e. do discreteUniform( 100, -78, 0 );
here.
Similar changes will have to be made in various other places of this PR.
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.
Various files will have to be updated to not have a minus sign applied to an array value.
Thanks for your PR and any necessary edits!
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.
Thank you, @hrshya!
PR Commit Message
Please review the above commit message and make any necessary adjustments. |
Resolves none .
Description
This pull request:
math/base/special/negafibonacci
,math/base/special/negalucas
,math/base/special/nonfibonacci
andmath/base/special/nonfibonaccif
packages.randu()
withdiscreteUniform()
from@stdlib/random/array/discrete-uniform
for cleaner and more consistent code.Related Issues
This pull request:
Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers