Skip to content

Commit

Permalink
(#301) fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dak151449 committed Nov 26, 2023
1 parent accf18f commit 7f474bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/Objects/src/Regex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ FiniteAutomaton Regex::to_antimirov(iLogTemplate* log) const {
} else {
deriv_log += out[j][1].to_txt() + "\\\\";
}
if (out[j][0].to_txt() == state) {
if (out[j][0].to_txt(false) == state) {
auto n = find(name_states.begin(), name_states.end(), out[j][1].to_txt(false));
Symbol s = out[j][2].to_txt(false);
transit[s].insert(n - name_states.begin());
Expand Down

0 comments on commit 7f474bd

Please sign in to comment.