| 1319 | } |
| 1320 | |
| 1321 | void GenericClusterImpl::Clear(TxGraphImpl& graph, int level) noexcept |
| 1322 | { |
| 1323 | Assume(GetTxCount()); |
| 1324 | graph.GetClusterSet(level).m_cluster_usage -= TotalMemoryUsage(); |
| 1325 | for (auto i : m_linearization) { |
| 1326 | graph.ClearLocator(level, m_mapping[i], m_quality == QualityLevel::OVERSIZED_SINGLETON); |
| 1327 | } |
| 1328 | m_depgraph = {}; |
| 1329 | m_linearization.clear(); |
| 1330 | m_mapping.clear(); |
| 1331 | } |
| 1332 | |
| 1333 | void SingletonClusterImpl::Clear(TxGraphImpl& graph, int level) noexcept |
| 1334 | { |
no test coverage detected