Skip to content

Commit

Permalink
++bla
Browse files Browse the repository at this point in the history
  • Loading branch information
kilohsakul committed Sep 28, 2023
1 parent a0f45b3 commit 364c6eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nfa/nfa.cc
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ BoolVector Nfa::get_useful_states(bool stop_at_first_useful_state) const {
State act_succ = (*act_state_data.current_move).target;
act_state_data.lowlink = std::min(act_state_data.lowlink, node_info[act_succ].lowlink);
// act_succ is the state that cased the recursive call. Move to another successor.
act_state_data.current_move++;
++act_state_data.current_move;
}

// iterate through outgoing edges
Expand Down

0 comments on commit 364c6eb

Please sign in to comment.