Matthias Untergassmair

Results 9 comments of Matthias Untergassmair

It's used in the straight roadway example at the moment, I was able to make it work by adding the `posf` and `posg` functions. Maybe this is enough to continue...

I think we should also try to close issues #6, #8, #9 with v0.8, some of them are already fixed on my fork

Sounds good. In terms of notebook would be nice to do the same as we did in ADM, i.e. move the notebook over to the docs and find a better...

As for documentation, the state of things is not worse than pre-v0.8, so I don't think we lose anything by merging. Better docs are always better, we should try to...

Could potentially be a breaking change if users were relying on the return type of `ind2x` to be `Array` rather than `AbstractArray`

> I like using StaticArrays! Shouldn't you be able to get it down to 0 allocs though? You have only reduced it to 1000000 from 2000000 As for the allocations,...

> Shouldn't we expect a similar speed up by replacing those: > https://github.com/sisl/GridInterpolations.jl/blob/master/src/GridInterpolations.jl#L36 > by mutable statically sized arrays? True, we could probly fix the size of most vectors that...

> Those allocations are in the constructor, so I don't think it will make too much difference because they are only done once when the object is constructed. > […](#)...