Subversion Repositories programming

Rev

Rev 55 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 55 Rev 56
Line 1... Line 1...
1
// Written by Ira Snyder
1
// Written by Ira Snyder
-
 
2
// Project #5
-
 
3
// Due Date: 12-02-2004
2
 
4
 
3
import java.io.*;
5
import java.io.*;
4
 
6
 
5
class Driver {
7
class Driver {
6
 
-
 
7
    public static void main ( String [] args ) throws Exception {
8
    public static void main ( String [] args ) throws Exception {
8
        Test test = new Test();
9
        Test test = new Test();
9
        test.test1();
10
        test.test1(); //run the 512 random test
10
 
11
 
11
        System.out.println();
12
        System.out.println();
12
        test.test2();
13
        test.test2(); //run the 1024 random test
13
 
14
 
14
        System.out.println();
15
        System.out.println();
15
        test.test3();
16
        test.test3(); //run the 2048 random test
16
 
17
 
17
        System.out.println();
18
        System.out.println();
18
        test.test4();
19
        test.test4(); //run the 4096 random test
19
 
20
 
20
        System.out.println();
21
        System.out.println();
21
        test.test5();
22
        test.test5(); //run the 1024 ascending test
22
 
23
 
23
        System.out.println();
24
        System.out.println();
24
        test.test6();
25
        test.test6(); //run the 1024 descending test
25
 
26
 
26
        System.out.println();
27
        System.out.println();
27
        test.test7();
28
        test.test7(); //run the 1024 value 1.0 test
28
    }
29
    }
29
 
-
 
30
}
30
}
31
 
31