I’m trying to do something along the likes of
struct Simplex{d}
vindices::NTuple{d+1,Int}
end
I know of the workaround in this answer but is there some other solution that doesn’t involve changing my type signature?
If not, would this be a reasonable feature request? By declaring d<:Int
I feel like the compiler shouldn’t have a problem figuring out simple arithmetic.