Subversion Repositories programming

Rev

Rev 100 | 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
108 ira 4
// License: Public Domain (added 07-11-2005)
51 irasnyd 5
 
6
import java.io.*;
7
 
8
class Driver {
9
    public static void main ( String [] args ) throws Exception {
10
        Test test = new Test();
56 irasnyd 11
        test.test1(); //run the 512 random test
55 irasnyd 12
 
13
        System.out.println();
56 irasnyd 14
        test.test2(); //run the 1024 random test
55 irasnyd 15
 
16
        System.out.println();
56 irasnyd 17
        test.test3(); //run the 2048 random test
55 irasnyd 18
 
19
        System.out.println();
56 irasnyd 20
        test.test4(); //run the 4096 random test
55 irasnyd 21
 
22
        System.out.println();
56 irasnyd 23
        test.test5(); //run the 1024 ascending test
55 irasnyd 24
 
25
        System.out.println();
56 irasnyd 26
        test.test6(); //run the 1024 descending test
55 irasnyd 27
 
28
        System.out.println();
56 irasnyd 29
        test.test7(); //run the 1024 value 1.0 test
51 irasnyd 30
    }
31
}
32