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

public class PitVariant6 extends PitOriginal {

    /** The pebbles themselves */
    public Points getPoints() {
        return new PointsFixed( getPebbles(), getDimensions(), getSpace() );
    }    


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


// End of File