| 1691 | } |
| 1692 | |
| 1693 | Cluster* TxGraphImpl::PullIn(Cluster* cluster, int level) noexcept |
| 1694 | { |
| 1695 | int to_level = GetTopLevel(); |
| 1696 | Assume(to_level == 1); |
| 1697 | Assume(level <= to_level); |
| 1698 | // Copy the Cluster from main to staging, if it's not already there. |
| 1699 | if (level == 0) { |
| 1700 | // Make the Cluster Acceptable before copying. This isn't strictly necessary, but doing it |
| 1701 | // now avoids doing double work later. |
| 1702 | MakeAcceptable(*cluster, level); |
| 1703 | cluster = cluster->CopyToStaging(*this); |
| 1704 | } |
| 1705 | return cluster; |
| 1706 | } |
| 1707 | |
| 1708 | void TxGraphImpl::ApplyRemovals(int up_to_level) noexcept |
| 1709 | { |
nothing calls this directly
no test coverage detected