Skip to content

Commit

Permalink
++ prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
kilohsakul committed Sep 28, 2023
1 parent 81f3b67 commit a0fe73a
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 @@ -250,7 +250,7 @@ BoolVector Nfa::get_useful_states(bool stop_at_first_useful_state) const {
// rec_call simulates call of the strongconnect. Since c++ cannot do continue over
// multiple loops, we use rec_call to jump to the main loop
bool rec_call = false;
for(;act_state_data.current_move != act_state_data.end_move;act_state_data.current_move++) {
for(;act_state_data.current_move != act_state_data.end_move;++act_state_data.current_move) {
next_state = (*act_state_data.current_move).target;
// if successor is useful, act_state is useful as well
if(useful[next_state]) {
Expand Down

0 comments on commit a0fe73a

Please sign in to comment.