/*
 * This program fixes up a site survey where beepers have been placed
 * where there was no beeper before and vice versa
 *
 * @author: Russell C. Bjork
 * @version: January 9, 2006
 *
 */
 
import kareltherobot.*;
  
public class Survey implements Runnable, Directions
{
    public static void main(String [] args)
    { 
        World.readWorld("Survey.world");
        World.setVisible(true);
        World.setupThread(new Survey());
        World.setTrace(false);
        World.showSpeedControl(true);
    }
      
    public void run()
    {
        SurveyFixerRobot karel = new SurveyFixerRobot(2, 2, East, 30);
        karel.fixupSurvey();
        karel.turnOff();
    }
}
  
