Skip to content
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

⚡ Faster implementation for set #1020

Merged
merged 8 commits into from
Oct 21, 2020
Merged

⚡ Faster implementation for set #1020

merged 8 commits into from
Oct 21, 2020

Conversation

dubzzz
Copy link
Owner

@dubzzz dubzzz commented Sep 28, 2020

In a nutshell

Fixes #1019

❌ New feature
✔️ Fix an issue
❌ Documentation improvement
❌ Other: please explain

(✔️: yes, ❌: no)

Potential impacts

Values generated by:

  • set
  • dictionary
  • object
  • anything
  • json
  • unicodeJson
  • jsonObject
  • unicodeJsonObject

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@codesandbox-ci
Copy link

codesandbox-ci bot commented Sep 28, 2020

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit 01637ca:

Sandbox Source
Vanilla Configuration
fast-check-examples Configuration

@coveralls
Copy link

coveralls commented Sep 28, 2020

Coverage Status

Coverage increased (+0.03%) to 96.405% when pulling 01637ca on faster-set into 5567eca on master.

@dubzzz dubzzz changed the title 🚧 Faster implementation for set ⚡ Faster implementation for set Sep 30, 2020
@dubzzz
Copy link
Owner Author

dubzzz commented Oct 21, 2020

Here are the results of performance benchmarks against the current implementation (referred as Reference) and the one of this PR (referred as Test):

Reference..gen.set x 1,486 ops/sec ±0.25% (1088 runs sampled)
Reference..gen.set x 1,396 ops/sec ±0.55% (1075 runs sampled)
Test.......gen.set x 1,476 ops/sec ±1.88% (1086 runs sampled)
Test.......gen.set x 1,353 ops/sec ±0.53% (1086 runs sampled)

Reference..gen.set1 x 873 ops/sec ±0.43% (1084 runs sampled)
Reference..gen.set1 x 859 ops/sec ±0.37% (1074 runs sampled)
Test.......gen.set1 x 926 ops/sec ±0.30% (1083 runs sampled)
Test.......gen.set1 x 853 ops/sec ±0.35% (1084 runs sampled)

Reference..gen.set10 x 613 ops/sec ±0.33% (1085 runs sampled)
Reference..gen.set10 x 567 ops/sec ±0.28% (1082 runs sampled)
Test.......gen.set10 x 647 ops/sec ±0.28% (1081 runs sampled)
Test.......gen.set10 x 605 ops/sec ±0.26% (1084 runs sampled)

Reference..gen.set100 x 56.28 ops/sec ±1.76% (1054 runs sampled)
Reference..gen.set100 x 58.05 ops/sec ±0.22% (1055 runs sampled)
Test.......gen.set100 x 72.92 ops/sec ±0.21% (1071 runs sampled)
Test.......gen.set100 x 74.08 ops/sec ±0.20% (1060 runs sampled)

With the following tests:

[
  { name: 'gen.set', run: (fc) => sampler(fc, fc.set(fc.nat())) },
  { name: 'gen.set1', run: (fc) => sampler(fc, fc.set(fc.nat(), { minLength: 1 })) },
  { name: 'gen.set10', run: (fc) => sampler(fc, fc.set(fc.nat(), { minLength: 10 })) },
  { name: 'gen.set100', run: (fc) => sampler(fc, fc.set(fc.nat(), { minLength: 100 })) },
];

@dubzzz dubzzz merged commit c18a092 into master Oct 21, 2020
@dubzzz dubzzz deleted the faster-set branch October 21, 2020 20:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

set discards too many generated values
2 participants