summaryrefslogtreecommitdiff
path: root/src/parser/parser.cpp
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2010-05-07 19:44:05 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2010-05-07 19:44:05 +0000
commit46e4487c37628217ec64a2b325b287acfb0ae8c5 (patch)
treeae1b831bdf134b1e5ba68c5d15731971a5bdb25c /src/parser/parser.cpp
parentdded216dc01dc123bd54a33b1ca5b6d3c016b237 (diff)
Tightening lexer rules for numerals in SMT v2
Diffstat (limited to 'src/parser/parser.cpp')
-rw-r--r--src/parser/parser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser/parser.cpp b/src/parser/parser.cpp
index a393bc85f..b4bafc953 100644
--- a/src/parser/parser.cpp
+++ b/src/parser/parser.cpp
@@ -39,7 +39,8 @@ Parser::Parser(ExprManager* exprManager, Input* input) :
d_exprManager(exprManager),
d_input(input),
d_done(false),
- d_checksEnabled(true) {
+ d_checksEnabled(true),
+ d_strictMode(false) {
d_input->setParser(this);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback