mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
allow parsing commas from SMTLIB2 input
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
292e72ce0c
commit
d70b63c8ac
|
@ -318,6 +318,7 @@ namespace smt2 {
|
|||
m_normalized[static_cast<int>('.')] = 'a';
|
||||
m_normalized[static_cast<int>('?')] = 'a';
|
||||
m_normalized[static_cast<int>('/')] = 'a';
|
||||
m_normalized[static_cast<int>(',')] = 'a';
|
||||
next();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue