Example #1
0
 static void Main(string[] args)
 {
     hello("World");
     TestGeneric();
     NBody.Run(args);
     TestSort(50000);
 }
Example #2
0
 static void TestNBody(int N)
 {
     Measure(() => { NBody.Run(N); });
 }