| 330 | } |
| 331 | |
| 332 | BOOL LASinterval::get_cell(const I32 c_index) |
| 333 | { |
| 334 | my_cell_hash::iterator hash_element = ((my_cell_hash*)cells)->find(c_index); |
| 335 | if (hash_element == ((my_cell_hash*)cells)->end()) |
| 336 | { |
| 337 | current_cell = 0; |
| 338 | return FALSE; |
| 339 | } |
| 340 | index = (*hash_element).first; |
| 341 | full = (*hash_element).second->full; |
| 342 | total = (*hash_element).second->total; |
| 343 | current_cell = (*hash_element).second; |
| 344 | return TRUE; |
| 345 | } |
| 346 | |
| 347 | BOOL LASinterval::add_current_cell_to_merge_cell_set() |
| 348 | { |