Browse Source

fixed chain size computation

tempestpy_adaptions
TimQu 7 years ago
parent
commit
46074aa8bc
  1. 5
      src/storm/solver/TopologicalLinearEquationSolver.cpp

5
src/storm/solver/TopologicalLinearEquationSolver.cpp

@ -182,7 +182,10 @@ namespace storm {
uint32_t& currentChainSize = chainSizes[currentSccIndex];
for (auto const& row : scc) {
for (auto const& entry : this->A->getRow(row)) {
currentChainSize = std::max(currentChainSize, chainSizes[sccIndices[entry.getColumn()]] + 1);
auto const& successorSCC = sccIndices[entry.getColumn()];
if (successorSCC != currentSccIndex) {
currentChainSize = std::max(currentChainSize, chainSizes[successorSCC] + 1);
}
}
}
longestChainSize = std::max(longestChainSize, currentChainSize);

Loading…
Cancel
Save