Hi, I want to create a structure like:
struct Lattice{D, L, D1}
# number of sites per dimension
L::NTuple{D, Int}
...
sites::Array{Site{L}, D1}
end
where D is just the dimension of the lattice and D1 is D+1. Since D1 is related to D there should be a way of writing this structure without D1, right? Thanks for any help