Added mlp runtime skeleton, flags to build it, syntax option to name sese blocks
[IRC.git] / Robust / src / Tests / mlp / tinyTest / test.java
1 public class Test {
2
3   public static void main( String args[] ) {
4
5     int n = 10;
6
7     sese s0 {
8       
9       /*
10       int[] a = new int[n];
11       int[] b = new int[n];
12       int[] c = new int[n];
13       
14       for( int i = 0; i < n; ++i ) {
15         sese {
16           a[i] = i;
17           b[i] = n - i;
18         }
19       }
20
21       for( int j = 0; j < n; ++j ) {
22         sese {
23           c[j] = a[j] + b[j];
24         }
25       }
26
27       int total = 0;
28       for( int k = 0; k < n; ++k ) {
29         sese {
30           total = total + c[k];
31         }
32       }
33
34       System.out.println( "total is "+total );
35       */
36
37       int x = n;
38     }
39
40   }
41 }