diff options
Diffstat (limited to 'test/gauss.c')
-rw-r--r-- | test/gauss.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/gauss.c b/test/gauss.c new file mode 100644 index 0000000..341c2aa --- /dev/null +++ b/test/gauss.c @@ -0,0 +1,18 @@ +/* Generated from ../../../git/cloog/test/gauss.cloog by CLooG 0.14.0-136-gb91ef26 gmp bits in 0.03s. */ +if (M >= 2) { + for (c2=2;c2<=M;c2++) { + for (j=2;j<=M;j++) { + S2(1,j,c2) ; + } + } + for (c1=2;c1<=M-1;c1++) { + for (c2=c1+1;c2<=M;c2++) { + for (j=1;j<=c1-1;j++) { + S1(c1,j,c2) ; + } + for (j=c1+1;j<=M;j++) { + S2(c1,j,c2) ; + } + } + } +} |