Skip to content

Commit

Permalink
Fix bug with parsing quantifier names with !
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAlaif committed Feb 6, 2025
1 parent a26b935 commit 33697d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smt-log-parser/src/items/quant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl<'a> QuantKindParse<'a> {
split
.next()
.and_then(|id| id.parse::<usize>().ok())
.map_or(Self::Named(name), |id| Self::Unnamed { name, id })
.map_or(Self::Named(value), |id| Self::Unnamed { name, id })
}
}

Expand Down

0 comments on commit 33697d9

Please sign in to comment.