| 977 | }; |
| 978 | |
| 979 | void BasicSetRepository::printStatistics() const |
| 980 | { |
| 981 | StatisticsVisitor stats(m_dataRepository); |
| 982 | m_dataRepository.visitAllItems<StatisticsVisitor>(stats); |
| 983 | qCDebug(LANGUAGE) << "count of nodes:" << stats.nodeCount << "count of nodes with bad split:" << |
| 984 | stats.badSplitNodeCount << "count of nodes with zero reference-count:" << stats.zeroRefCountNodes; |
| 985 | } |
| 986 | |
| 987 | BasicSetRepository::~BasicSetRepository() = default; |
| 988 |
no outgoing calls