Sha256: cccab3050cc41b36cbd3cf0e6858d1a481eb6bda2e160db2a0c20fcd08f8cc42
Contents?: true
Size: 936 Bytes
Versions: 4
Compression:
Stored size: 936 Bytes
Contents
# frozen_string_literal: true module Suika # @!visibility private class Lattice # @!visibility private attr_reader :begin_nodes, :end_nodes, :length # @!visibility private def initialize(length) @length = length @begin_nodes = Array.new(length + 1) { [] } @end_nodes = Array.new(length + 1) { [] } bos = Node.new(surface: 'BOS', unknown: false, left_id: 0, right_id: 0, cost: 0, attrs: []) @end_nodes[0].push(bos) eos = Node.new(surface: 'EOS', unknown: false, left_id: 0, right_id: 0, cost: 0, attrs: []) @begin_nodes[length].push(eos) end # @!visibility private def insert(begin_id, end_id, surface, unknown, left_id, right_id, cost, attrs) node = Node.new(surface: surface, unknown: unknown, left_id: left_id, right_id: right_id, cost: cost, attrs: attrs) @begin_nodes[begin_id].push(node) @end_nodes[end_id].push(node) end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
suika-0.3.2 | lib/suika/lattice.rb |
suika-0.3.1 | lib/suika/lattice.rb |
suika-0.3.0 | lib/suika/lattice.rb |
suika-0.2.0 | lib/suika/lattice.rb |