summaryrefslogtreecommitdiff
path: root/src/printer
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2021-04-09 17:22:07 -0700
committerGitHub <noreply@github.com>2021-04-09 17:22:07 -0700
commitf87f038c5f0821d0fefb01cea00bfdec6004da91 (patch)
treed948178e1c0d2dc459a976f0d187d2d41a5437c0 /src/printer
parent550c49a7dd2b13ea29743458336f0c0a0fb6099a (diff)
Rename CVC4_ macros to CVC5_. (#6327)
Diffstat (limited to 'src/printer')
-rw-r--r--src/printer/smt2/smt2_printer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/printer/smt2/smt2_printer.cpp b/src/printer/smt2/smt2_printer.cpp
index b0019d272..4a64c220a 100644
--- a/src/printer/smt2/smt2_printer.cpp
+++ b/src/printer/smt2/smt2_printer.cpp
@@ -2098,14 +2098,14 @@ static void toStream(std::ostream& out, const CommandInterrupted* s, Variant v)
static void toStream(std::ostream& out, const CommandUnsupported* s, Variant v)
{
-#ifdef CVC4_COMPETITION_MODE
+#ifdef CVC5_COMPETITION_MODE
// if in competition mode, lie and say we're ok
// (we have nothing to lose by saying success, and everything to lose
// if we say "unsupported")
out << "success" << endl;
-#else /* CVC4_COMPETITION_MODE */
+#else /* CVC5_COMPETITION_MODE */
out << "unsupported" << endl;
-#endif /* CVC4_COMPETITION_MODE */
+#endif /* CVC5_COMPETITION_MODE */
}
static void errorToStream(std::ostream& out, std::string message, Variant v) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback