Skip to content

Commit c71302d

Browse files
committed
fix call to reduce_simulation
1 parent 3406340 commit c71302d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nfa/operations.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,7 @@ Nfa mata::nfa::reduce(const Nfa &aut, StateRenaming *state_renaming, const Param
10841084
std::unordered_map<State,State> reduced_state_map;
10851085
const std::string& algorithm = params.at("algorithm");
10861086
if ("simulation" == algorithm) {
1087-
result = reduce_size_by_simulation(aut, reduced_state_map);
1087+
result = algorithms::reduce_simulation(aut, reduced_state_map);
10881088
}
10891089
else if ("residual" == algorithm) {
10901090
// reduce type either 'after' or 'with' creation of residual automaton

0 commit comments

Comments
 (0)