1
2
3# ---------------------- CONTEXT ----------------------
4c # language is C
5
6# Context (no constraints on two parameters)
71 4                   # 1 lines and 4 columns
8# eq/in m  n  1
91   0  0  0       # 0 >= 0, always true
10
111 # We want to set manually the parameter names
12m n                   # parameter names
13
14# --------------------- STATEMENTS --------------------
151 # Number of statements
16
171 # First statement: two domains
18# First domain
193 5                   # 3 lines and 5 columns
20# eq/in i  m  n  1
211   1  0  0 -1    # i >= 1
221  -1  0  1  0    # i <= n
231   1 -1  0  0    # i >= m
24# Second domain
250  0  0               # for future options
26
27
281 # We want to set manually the iterator names
29i j                   # iterator names
30
31# --------------------- SCATTERING --------------------
321 # Scattering functions
33# First function
342 7                   # 2 lines and 7 columns
35# eq/in p1 p2  i  m  n  1 
360    1  0 -50  0  0  0    # p1 = i
370    0  1  0  0  0  0    # p2 = 0
38
391 # We want to set manually the scattering dimension names
40p1 p2                 # scattering dimension names
41
42