| 109 | } |
| 110 | |
| 111 | CellView::unspecific_cell_path_type |
| 112 | CellView::combined_unspecific_path () const |
| 113 | { |
| 114 | CellView::unspecific_cell_path_type path; |
| 115 | path.reserve (m_unspecific_path.size () + m_specific_path.size ()); |
| 116 | path.insert (path.end (), m_unspecific_path.begin (), m_unspecific_path.end ()); |
| 117 | for (CellView::specific_cell_path_type::const_iterator p = m_specific_path.begin (); p != m_specific_path.end (); ++p) { |
| 118 | path.push_back (p->inst_ptr.cell_index ()); |
| 119 | } |
| 120 | return path; |
| 121 | } |
| 122 | |
| 123 | void |
| 124 | CellView::set_cell (cell_index_type index) |
no test coverage detected