PRQuadTree / src / Point2.java
Point2.java
Raw
// On my honor:
//
// - I have not used source code obtained from another student,
// or any other unauthorized source, either modified or
// unmodified.
//
// - All source code and documentation used in my program is
// either my original work, or was derived by me from the
// source code published in the textbook for this course.
//
// - I have not discussed coding details about this project with
// anyone other than the instructor, ACM/UPE tutors, programming 
// partner (if allowed in this class), or the TAs assigned to 
// this course. I understand that I may discuss the concepts
// of this program with other students, and that another student
// may help me debug my program so long as neither of us writes
// anything during the discussion or modifies any computer file
// during the discussion. I have violated neither the spirit nor
// letter of this restriction.
// -nickgrifasi

/**
 * 
 * @author nickgrifasi
 * @version 10/15/21
 * 9/20/21 Point2 class takes argument for commandFile containing
 * information to run PRQuadTree and SkipList methods. 
 * Prints this process to System.out
 *
 */
public class Point2 {
        
    /**
    * main() method that runs the CommandFileScanner class
    * @param args parameter used as input for CommandFileScanner. 
    * args[0] should equal a string in format of a text file.
    */
    public static void main(String[] args)
    {
        CommandFileScanner scanner = new CommandFileScanner(args[0]);
        scanner.fileScan();
    }
    

}