summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/driver_portfolio.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/driver_portfolio.cpp b/src/main/driver_portfolio.cpp
index 7b0c70a8a..d17d00c5d 100644
--- a/src/main/driver_portfolio.cpp
+++ b/src/main/driver_portfolio.cpp
@@ -275,6 +275,7 @@ int runCvc4(int argc, char *argv[], Options& options) {
Chat.setStream(CVC4::null_os);
Message.setStream(CVC4::null_os);
Warning.setStream(CVC4::null_os);
+ Dump.setStream(CVC4::null_os);
} else {
if(options.verbosity < 2) {
Chat.setStream(CVC4::null_os);
@@ -294,6 +295,9 @@ int runCvc4(int argc, char *argv[], Options& options) {
Chat.getStream() << Expr::setlanguage(language);
Message.getStream() << Expr::setlanguage(language);
Warning.getStream() << Expr::setlanguage(language);
+ Dump.getStream() << Expr::setlanguage(options.outputLanguage)
+ << Expr::setdepth(-1)
+ << Expr::printtypes(false);
}
vector<Options> threadOptions;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback