예제 #1
0
 static void Main(string[] args)
 {
     hello("World");
     TestGeneric();
     NBody.Run(args);
     TestSort(50000);
 }
예제 #2
0
파일: Program.cs 프로젝트: ncave/dna-redux
 static void TestNBody(int N)
 {
     Measure(() => { NBody.Run(N); });
 }