summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2013-02-15 17:10:50 -0500
committerKshitij Bansal <kshitij@cs.nyu.edu>2013-02-15 17:18:49 -0500
commit0b6203eda700e3a98cf792ca8b0f66f2caf733c2 (patch)
treedab78fff5ebf1481bf5998a2208e6fa1ea3c643c
parent3ccc9e706aeb6c9176505c21e9e205f2c5f97d11 (diff)
prvs commit: lower warning to notice
Signed-off-by: Kshitij Bansal <kshitij@cs.nyu.edu>
-rw-r--r--src/main/driver_unified.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/driver_unified.cpp b/src/main/driver_unified.cpp
index 624573391..741975b11 100644
--- a/src/main/driver_unified.cpp
+++ b/src/main/driver_unified.cpp
@@ -195,8 +195,8 @@ int runCvc4(int argc, char* argv[], Options& opts) {
# else
vector<Options> threadOpts = parseThreadSpecificOptions(opts);
if(opts[options::incrementalSolving] && !opts[options::incrementalParallel]) {
- Warning() << "WARNING: In --incremental mode, using the sequential solver unless forced by...\n"
- << "WARNING: ...the experimental --incremental-parallel option.\n";
+ Notice() << "Notice: In --incremental mode, using the sequential solver unless forced by...\n"
+ << "Notice: ...the experimental --incremental-parallel option.\n";
exprMgr = new ExprManager(opts);
pExecutor = new CommandExecutor(*exprMgr, opts);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback