UrbanAnalyst / dodgr

Distances on Directed Graphs in R
https://urbananalyst.github.io/dodgr/
127 stars 16 forks source link

Change all unsigned int -> unsigned long #160

Closed mpadge closed 3 years ago

mpadge commented 3 years ago

Some of the C++ code (like pathfiners.h) has graph indices stored as unsigned int, but there's no reason for restriction to int, so these should be all unsigned long.

mpadge commented 3 years ago

size_t, really, for reasons nicely explained here.