* Rename SMT parts (printer, parser) to SMT1
authorMorgan Deters <mdeters@gmail.com>
Thu, 27 Sep 2012 22:04:38 +0000 (22:04 +0000)
committerMorgan Deters <mdeters@gmail.com>
Thu, 27 Sep 2012 22:04:38 +0000 (22:04 +0000)
commitad0a71e2782bc291ba9f808d24df2e1d8ca1b41e
tree744a9ae0f10f6dd8837d7e0dcd8bd2b25d34e481
parent51daaee8eb1ee55ee3323c5395a95fd121fe87a8
* Rename SMT parts (printer, parser) to SMT1
* Change --lang smt to mean SMT-LIBv2
* --lang smt1 now means SMT-LIBv1

* SMT-LIBv2 parser now gives helpful error if input looks like v1
* SMT-LIBv1 parser now gives helpful error if input looks like v2
* CVC presentation language parser now gives helpful error if input
  looks like either SMT-LIB v1 or v2

* Other associated changes

(this commit was certified error- and warning-free by the test-and-commit script.)
42 files changed:
src/main/Makefile.am
src/main/driver_unified.cpp
src/main/interactive_shell.cpp
src/main/options
src/options/base_options
src/options/base_options_handlers.h
src/options/mkoptions
src/options/options_template.cpp
src/parser/Makefile.am
src/parser/antlr_input.cpp
src/parser/cvc/Cvc.g
src/parser/parser.cpp
src/parser/parser_builder.cpp
src/parser/smt/Makefile [deleted file]
src/parser/smt/Makefile.am [deleted file]
src/parser/smt/Smt.g [deleted file]
src/parser/smt/smt.cpp [deleted file]
src/parser/smt/smt.h [deleted file]
src/parser/smt/smt_input.cpp [deleted file]
src/parser/smt/smt_input.h [deleted file]
src/parser/smt1/Makefile [new file with mode: 0644]
src/parser/smt1/Makefile.am [new file with mode: 0644]
src/parser/smt1/Smt1.g [new file with mode: 0644]
src/parser/smt1/smt1.cpp [new file with mode: 0644]
src/parser/smt1/smt1.h [new file with mode: 0644]
src/parser/smt1/smt1_input.cpp [new file with mode: 0644]
src/parser/smt1/smt1_input.h [new file with mode: 0644]
src/parser/smt2/Smt2.g
src/parser/smt2/smt2.cpp
src/parser/smt2/smt2.h
src/parser/tptp/tptp.cpp
src/parser/tptp/tptp.h
src/printer/Makefile.am
src/printer/printer.cpp
src/printer/smt/smt_printer.cpp [deleted file]
src/printer/smt/smt_printer.h [deleted file]
src/printer/smt1/smt1_printer.cpp [new file with mode: 0644]
src/printer/smt1/smt1_printer.h [new file with mode: 0644]
src/util/language.cpp
src/util/language.h
test/regress/run_regression
test/unit/parser/parser_black.h