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

Return entire array? #26

Open
taylorpetty opened this issue May 21, 2022 · 0 comments
Open

Return entire array? #26

taylorpetty opened this issue May 21, 2022 · 0 comments

Comments

@taylorpetty
Copy link

taylorpetty commented May 21, 2022

Could there be a flag -- something like array_out = True -- to have the function spit out the entire dynamic programming array, as opposed to just the bottom corner entry that is the final solution?

For example, in c_levenshtein:

if array_out == True:
    return d
else:
    ret_val = Array2D_0_get(d, len1, len2)
    Array2D_del(d)
    return ret_val
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

No branches or pull requests

1 participant