Method: IntervalNotation::SweepLine.make_tagging

Defined in:
lib/interval_notation/sweep_line/sweep_line.rb

.make_tagging(indexed_interval_sets) ⇒ Object

Make tagging segmentation of interval sets. Each segment’s state in a resulting segmentation is a set of tags lying against a segment.



39
40
41
# File 'lib/interval_notation/sweep_line/sweep_line.rb', line 39

def self.make_tagging(indexed_interval_sets)
  make_segmentation(indexed_interval_sets, SweepLine::TraceState::SingleTagging.initial_state)
end