3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 19:53:45 +01:00
dft_tools/test/triqs/arrays/iterators.output
Olivier Parcollet f2c7d449cc First commit : triqs libs version 1.0 alpha1
for earlier commits, see TRIQS0.x repository.
2013-07-17 19:24:07 +02:00

60 lines
657 B
Plaintext

(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]]