Skip to content

Commit

Permalink
Update TarjanModelChecker.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
srba authored Feb 25, 2023
1 parent e76861f commit 594b429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LTL/Algorithm/TarjanModelChecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ namespace LTL {
if(_cstack[p]._lowsource != std::numeric_limits<idx_t>::max() && !had_deadlock)
{
p = _cstack[p]._lowsource;
while (_cstack[p]._lowlink != std::numeric_limits<idx_t>::max() && p != cstack[p]._lowsource) {
while (_cstack[p]._lowlink != std::numeric_limits<idx_t>::max() && p != _cstack[p]._lowsource) {
auto[parent, tid] = _seen.getHistory(_cstack[p]._stateid);
this->printTransition(tid, os) << '\n';
if(tid >= std::numeric_limits<ptrie::uint>::max() - 1)
Expand Down

0 comments on commit 594b429

Please sign in to comment.