mirror of
https://github.com/Z3Prover/z3
synced 2025-06-20 12:53:38 +00:00
bugfix for FPA numerals
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
880cbb936e
commit
0ab54b9e0c
1 changed files with 2 additions and 2 deletions
|
@ -68,8 +68,8 @@ extern "C" {
|
||||||
(' ' == *m) || ('\n' == *m) ||
|
(' ' == *m) || ('\n' == *m) ||
|
||||||
('.' == *m) || ('e' == *m) ||
|
('.' == *m) || ('e' == *m) ||
|
||||||
('E' == *m) ||
|
('E' == *m) ||
|
||||||
(('p' == *m) && is_float) ||
|
('p' == *m && is_float) ||
|
||||||
(('P' == *m)) && is_float)) {
|
('P' == *m && is_float))) {
|
||||||
SET_ERROR_CODE(Z3_PARSER_ERROR);
|
SET_ERROR_CODE(Z3_PARSER_ERROR);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue