Closed hannahbast closed 1 month ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 88.12%. Comparing base (
f39907c
) to head (03b6e21
). Report is 1 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code
So far, we used our
FastRandomIntGenerator
to generate values forRAND
. However, the standard dictates thatRAND
returns anxsd:double
from the range [0, 1). We now do this using ourRandomDoubleGenerator
. It is around six times slower than the previous generator, but still fast enough (4.8 ns / number vs. 0.8 ns / number). Fixes #1516Also added a performance test to
RandomTest
to be able to check the speed of a random number generator quickly.