mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-16 02:37:42 +01:00
29 lines
273 B
Plaintext
29 lines
273 B
Plaintext
|
# Optimal code is in fact :
|
||
|
#
|
||
|
# for (i=0;i<=M;i+=2) {
|
||
|
# S1 ;
|
||
|
# }
|
||
|
|
||
|
# language: C
|
||
|
c
|
||
|
|
||
|
# parameter n
|
||
|
1 3
|
||
|
# n 1
|
||
|
1 0 1
|
||
|
0
|
||
|
|
||
|
1 # Number of statements
|
||
|
|
||
|
1
|
||
|
# {i, j | i=2*j; 0<=i<=n}
|
||
|
3 5
|
||
|
# i j n 1
|
||
|
0 1 -2 0 0
|
||
|
1 1 0 0 0
|
||
|
1 -1 0 1 0
|
||
|
0 0 0
|
||
|
0
|
||
|
|
||
|
0 # Scattering functions
|