# File default/mathematician.rb, line 83
    def zag_move()
        #Precondition facing_south?
        if front_is_clear?() 
            zag_down_right()
        else 
            advance_to_next_diagonal()
        end
    end