-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add support for lazy word generation #92
base: main
Are you sure you want to change the base?
Conversation
53ea69f
to
63b51c8
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #92 +/- ##
==========================================
- Coverage 77.19% 77.04% -0.16%
==========================================
Files 27 27
Lines 3464 3502 +38
==========================================
+ Hits 2674 2698 +24
- Misses 790 804 +14 ☔ View full report in Codecov by Sentry. |
63b51c8
to
b981d1b
Compare
I need to take a look at how hunspell does this - we need a way to take the rules and apply them to only entries in the hashmap that were from the dictionary. Maybe we should iterate hashmap for entries that have |
Hm. Maybe it would be more efficient if instead we stored a vector or hashset of all We might even be able to optimize this if we store it in a vector, dedup it. Then if we sort it by something useful, we could use a binary search to locate applicable rules. As part of this, it could make sense to reverse |
b981d1b
to
51aabc3
Compare
51aabc3
to
fc3fa0e
Compare
No description provided.