1 ###############################################################################
3 # Problem : LU Decomposition +
7 ###############################################################################
9 ### Context -------------------------------------------------------------------
13 1 3 # 1 lines and 3 coloumns
17 1 # 1 - Specify the names of parameters
20 ### ----------------------------------------------------------------------------
22 ### Statements -----------------------------------------------------------------
23 2 # number of statements
27 # Eq/In J J K N1 Constants
31 1 -1 0 0 1 0 # I <= N1
32 1 0 -1 0 1 0 # J <= N1
40 # Eq/In I J K N1 Constants
44 1 0 -1 0 1 0 # J <= N1
46 1 -1 1 -2 0 0 # 2K <= J-I
50 J1 J2 J3 # Iterators name
52 ### ----------------------------------------------------------------------------
55 ### Scattering Functions -------------------------------------------------------
57 2 # Number of scattering functions
62 0 1 0 0 -1 -1 -1 0 0 # I1 = I+J+K
63 0 0 1 0 -1 0 0 0 0 # I2 = I
64 0 0 0 1 0 -1 0 0 0 # I3 = J
69 0 1 0 0 2 -2 1 0 0 # I1 = -2I + 2J - K
70 0 0 1 0 -1 0 0 0 0 # I2 = I
71 0 0 0 1 0 -1 0 0 0 # I3 = J
74 1 # Specify scattering dimension names
75 I1 I2 I3 # Scattering dimension names
77 ### ----------------------------------------------------------------------------