Skip to content

Improve bitap algorithm with obvious shortcuts #13

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

mnemnion
Copy link

@mnemnion mnemnion commented Jul 8, 2024

This patches python3 diff_match_patch.py to take two shortcuts in bitap score calculation. First, it does an integer comparison before forcing a cast to float, and second, if it gets a score of 0.0, it returns it.

All relevant tests pass, as I would expect, because one can demonstrate that this works just by reading the code carefully.

I know that this patch could be transfered to the C# version as well, I suspect that all versions have this inefficiency.

This patches python3 diff_match_patch.py to take two shortcuts in bitap
score calculation.  First, it does an integer comparison before forcing
a cast to float, and second, if it gets a score of 0.0, it returns it.

All relevant tests pass, as I would expect, because one can demonstrate
that this works just by reading the code carefully.

I know that this patch could be transfered to the C# version as well, I
suspect that all versions have this inefficiency.
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.

1 participant