Whether this cluster requires splitting. */
| 151 | bool IsOversized() const noexcept { return m_quality == QualityLevel::OVERSIZED_SINGLETON; } |
| 152 | /** Whether this cluster requires splitting. */ |
| 153 | bool NeedsSplitting() const noexcept |
| 154 | { |
| 155 | return m_quality == QualityLevel::NEEDS_SPLIT || m_quality == QualityLevel::NEEDS_SPLIT_FIX; |
| 156 | } |
| 157 | |
| 158 | /** Get the smallest number of transactions this Cluster is intended for. */ |
| 159 | virtual DepGraphIndex GetMinIntendedTxCount() const noexcept = 0; |
no outgoing calls
no test coverage detected