summaryrefslogtreecommitdiff
path: root/src/main/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/main.cpp')
-rw-r--r--src/main/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/main.cpp b/src/main/main.cpp
index 4850d475f..d2c6cb26d 100644
--- a/src/main/main.cpp
+++ b/src/main/main.cpp
@@ -36,6 +36,15 @@ int main(int argc, char *argv[]) {
throw new Exception(string("Could not open input file `") + argv[firstArgIndex] + "' for reading: " + strerror(errno));
exit(1);
}
+
+ // ExprManager *exprMgr = ...;
+ // SmtEngine smt(exprMgr, &opts);
+ // Parser parser(infile, exprMgr, &opts);
+ // while(!parser.done) {
+ // Command *cmd = parser.get();
+ // cmd->invoke(smt);
+ // delete cmd;
+ // }
}
} catch(CVC4::Main::OptionException* e) {
if(opts.smtcomp_mode) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback