Subversion Repositories programming

Rev

Rev 56 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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