/**
 * File          : PitVariant1.java
 * Desc          : Which problem is this?
 * Hist
 *   2004-02-22  : @author Douglas Reay
 */

public class PitVariant1 extends PitOriginal {

    /** Is it a round pit, square, or other distribution? */
    public Space getSpace() {
        return new SpaceSquare();
    }


    /** Command line entry point */
    public static void main(String[] args) {
        (new PitVariant1()).start();
    }
}


// End of File
