You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, many algorithms are not discoverable unless you know who created them. We should instead export more explicit function names, and add a type-based mechanism for dispatch with a reasonable default choice.
For instance,
In some cases it might also make sense to use some kind of heuristic in such a function to select the optimal algorithm.
Yeah here I did a dummy example but there are some cases where preliminary checks would make sense. For instance choosing between Dijkstra and Bellman-Ford based on the presence of negative edges
Currently, many algorithms are not discoverable unless you know who created them. We should instead export more explicit function names, and add a type-based mechanism for dispatch with a reasonable default choice.
For instance,
might become
The text was updated successfully, but these errors were encountered: