Daniel Smith

Results 258 comments of Daniel Smith

This turns out to be fairly messy since only the `NumPy` backend allows this kind of control. We have two options: 1) Note that `dtype`/`order`/`casting` is only valid for NumPy...

I didn't quite realize you could write: ``` cdef set indicies = set("abcd") ``` which appears to work quite nicely. This kind of implementation would be rather straightforward and would...

A simple test running `cythonize` with `-O3` over the code base results in a 30-50% improvement in path finding performance.

Thats pretty impressive. I think I could write up the Cython pretty quickly, my main hesitation at the moment is distribution. With ~3M/downloads a month currently, I worry that messing...

@Thenerdstation Do you have experience with this? I think we are at the point where we are to code this up, I just worry about missing a Cython gotcha and...

Since we are keeping with the NumPy Python deprecation cycle (see [here](https://numpy.org/neps/nep-0029-deprecation_policy.html)) as it is our only dependency we should be able to drop Python 3.5 on NumPy's next release...

Looks like plenty of errors for Py3.6 where `importlib.metadata` is not yet extant.

This does need to be optional and I would think a default off state to retain current functionality. I am a bit hesitant to make changes to current algorithms without...

@jcmgray I might try this today, are you working on any pieces currently?

@mrader1248 Do you have a bit of time to look into this?