Lines Matching refs:lines
39 # puts "Asked: Total Lines: #{total_lines} Line Count: #{width} Offsets: #{offsets.join(',')}"
49 lines = []
56 lines << (offset + line_offset)
58 if lines[-1] >= total_lines - 1
91 return [width, new_offsets, lines]
121 lines = []
125 puts "Find lines: #{find_lines.join(',')}"
126 while not find_lines.all? { |x| lines.include?(x) }
127 (width, offset, lines) = seq_combo_creator(line_count, width, offset)
130 puts "Sequential found #{find_lines.join(',')} in #{attempts} attempts with #{lines.length} total lines."
132 seq_size << lines.length
134 lines = []
138 while not find_lines.all? { |x| lines.include?(x) }
140 (width, offsets, lines) = combine_combo_creator(line_count, width, offsets)
143 puts "Combine found #{find_lines.join(',')} in #{attempts} attempts with #{lines.length} total lines."
145 combine_size << lines.length
153 puts "Diff lines: #{diff_lines}%"