* spot/twaalgos/rabin2parity.cc: Minor simplification.

This commit is contained in:
Alexandre Duret-Lutz 2019-10-16 17:24:53 +02:00
parent f0b52ce218
commit f7bec7eae9

View file

@ -267,9 +267,9 @@ namespace spot
>= scc_.states_of(scc_num).size());
// update state2iar
for (const auto& scc_state : sub_scc.states_of(bscc))
for (unsigned scc_state : sub_scc.states_of(bscc))
{
iar_state iar = num2iar.at(scc_state);
iar_state& iar = num2iar.at(scc_state);
if (state2iar.find(iar.state) == state2iar.end())
state2iar[iar.state] = iar;
}