-
Notifications
You must be signed in to change notification settings - Fork 30
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
Make Journal store delayed strings, so they are computed on-demand #147
Conversation
…when demanded This fixes the performance issues in the "greedy traversal" test.
Before:
After:
|
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.
👍 /cc @jystic
Just FYI: |
... actually, that's already meant to exist: fsharp/fslang-suggestions#429 |
👍 This is great |
Not sure why that happened twice... |
Make Journal store delayed strings, so they are computed on-demand
No worries, it's now manually merged in 813e1f9 via |
This fixes the performance issues in the "greedy traversal" test (#146).
I'm not entirely sure about the change to
PropertyBuilder.CounterExample
, but it's not really user-visible (they would be using thecounterexample
'action' instead of calling this directly).There's another
string
call which is not delayed (line 275) as it didn't seem to be a performance issue.