| 340 | } |
| 341 | |
| 342 | Float ShortEdgeRemoval::min_edge_length() const { |
| 343 | if (m_heap.size() <= 0) |
| 344 | throw RuntimeError("Edge heap is empty!"); |
| 345 | return m_heap.top_value(); |
| 346 | } |
| 347 | |
| 348 | Float ShortEdgeRemoval::compute_edge_length(const Edge& e) const { |
| 349 | size_t i1 = e.get_ori_data()[0]; |
nothing calls this directly
no test coverage detected