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
Running list of things spotted in C code that can be cleaned up, refactored, or otherwise optimized:
count_coordinates and get_coordinates can use METH_O for args in instead of METH_VARARGS, and skip arg parsing
STRtree _geoms should allocate an array since size is known at construction time, instead of using resizeable vector, which results in lots of reallocations.
Running list of things spotted in C code that can be cleaned up, refactored, or otherwise optimized:
count_coordinatesandget_coordinatescan useMETH_Ofor args in instead ofMETH_VARARGS, and skip arg parsing_geomsshould allocate an array since size is known at construction time, instead of using resizeable vector, which results in lots of reallocations.