# File lib/ruote/dboard/mutation.rb, line 132
    def register(point)

      pt = @points.find { |p| p.fei == point.fei }

      if pt && point.type == :re_apply
        @points.delete(pt)
        @points << point
      else
        @points << point
      end
    end