3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 03:33:50 +01:00
dft_tools/test/triqs/arrays/iterators.output

60 lines
657 B
Plaintext
Raw Normal View History

(0 0)
(1 0)
(0 1)
(1 1)
(0 2)
(1 2)
(0 0)
(1 0)
(0 1)
(1 1)
(0 2)
(1 2)
(0 0)
(0 1)
(0 2)
(1 0)
(1 1)
(1 2)
C order : traversal
i,j = (0 0)
i,j = (0 1)
i,j = (0 2)
i,j = (1 0)
i,j = (1 1)
i,j = (1 2)
A = i + 10*j
[[0,10,20]
[1,11,21]]
i,j = (0 0)
i,j = (0 1)
i,j = (0 2)
i,j = (1 0)
i,j = (1 1)
i,j = (1 2)
A = order of visit
[[0,1,2]
[3,4,5]]
F order : traversal
i,j = (0 0)
i,j = (1 0)
i,j = (0 1)
i,j = (1 1)
i,j = (0 2)
i,j = (1 2)
A = i + 10*j
[[0,10,20]
[1,11,21]]
i,j = (0 0)
i,j = (1 0)
i,j = (0 1)
i,j = (1 1)
i,j = (0 2)
i,j = (1 2)
Af = order of visit
[[0,-2,-4]
[-1,-3,-5]]