We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is an unnecessary computation of either t of in sais.c:701 and sais.c:731
t
The latter looks like and q never exceeds t.
q
t = PLCP[j]; // accesses DELTA-value q = RA[j+1]-RA[j]; // length difference PLCP[j++] = p; p -= (t > q) ? t : q; // decrease p by larger of t and q
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is an unnecessary computation of either
t
of in sais.c:701 and sais.c:731The latter looks like and
q
never exceedst
.The text was updated successfully, but these errors were encountered: