pathfinding
pathfinding copied to clipboard
topological sorting via vec instead of array
The current topological sorting functions use array for the node list making it impossible to use if the size isn't known at compile time and for varying inputs. Using Vec for node list can improve the usability of the topological sorting functions by a lot
Which function do you mean exactly, and what parameter would you like to change? As far as I can see there isn't any array in the signature or inside the function itself.