summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-04-21 10:21:34 -0700
committerGitHub <noreply@github.com>2021-04-21 10:21:34 -0700
commitae5ee4b07dc3d3c792e7fe7f382ff490dd28aca4 (patch)
treea7c2ab8013f46dbea75fcd6e7da3fb83e2012b2f /src/include
parent86aa9bc35ba9dc9a57913a2ffc71619c7657cc35 (diff)
Goodbye CVC4, hello cvc5! (#6371)
This commits changes the build system to cvc5 and removes the remaining occurrences of CVC4. It further cleans up outdated/unused scripts in contrib/.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/cvc5_private.h4
-rw-r--r--src/include/cvc5_private_library.h10
-rw-r--r--src/include/cvc5parser_private.h10
3 files changed, 12 insertions, 12 deletions
diff --git a/src/include/cvc5_private.h b/src/include/cvc5_private.h
index 6377997ef..101d7e4f2 100644
--- a/src/include/cvc5_private.h
+++ b/src/include/cvc5_private.h
@@ -17,11 +17,11 @@
#ifndef CVC5_PRIVATE_H
#define CVC5_PRIVATE_H
-#if !(defined(__BUILDING_CVC4LIB) || defined(__BUILDING_CVC4LIB_UNIT_TEST))
+#if !(defined(__BUILDING_CVC5LIB) || defined(__BUILDING_CVC5LIB_UNIT_TEST))
# error A private cvc5 header was included when not building the library or private unit test code.
#endif
-#include "cvc4autoconfig.h"
+#include "base/cvc5config.h"
#include "cvc5_public.h"
#endif /* CVC5_PRIVATE_H */
diff --git a/src/include/cvc5_private_library.h b/src/include/cvc5_private_library.h
index 36b2bbd04..b57292aa4 100644
--- a/src/include/cvc5_private_library.h
+++ b/src/include/cvc5_private_library.h
@@ -17,14 +17,14 @@
#ifndef CVC5_PRIVATE_LIBRARY_H
#define CVC5_PRIVATE_LIBRARY_H
-#if !(defined(__BUILDING_CVC4LIB) || defined(__BUILDING_CVC4LIB_UNIT_TEST) \
- || defined(__BUILDING_CVC4PARSERLIB) \
- || defined(__BUILDING_CVC4PARSERLIB_UNIT_TEST) \
- || defined(__BUILDING_CVC4DRIVER))
+#if !(defined(__BUILDING_CVC5LIB) || defined(__BUILDING_CVC5LIB_UNIT_TEST) \
+ || defined(__BUILDING_CVC5PARSERLIB) \
+ || defined(__BUILDING_CVC5PARSERLIB_UNIT_TEST) \
+ || defined(__BUILDING_CVC5DRIVER))
# error A "private library" cvc5 header was included when not building the library, driver, or private unit test code.
#endif
-#include "cvc4autoconfig.h"
+#include "base/cvc5config.h"
#include "cvc5_public.h"
#endif /* CVC5_PRIVATE_LIBRARY_H */
diff --git a/src/include/cvc5parser_private.h b/src/include/cvc5parser_private.h
index 8f6142cbb..fe9508283 100644
--- a/src/include/cvc5parser_private.h
+++ b/src/include/cvc5parser_private.h
@@ -17,15 +17,15 @@
#ifndef CVC5PARSER_PRIVATE_H
#define CVC5PARSER_PRIVATE_H
-#if !(defined(__BUILDING_CVC4PARSERLIB) \
- || defined(__BUILDING_CVC4PARSERLIB_UNIT_TEST))
+#if !(defined(__BUILDING_CVC5PARSERLIB) \
+ || defined(__BUILDING_CVC5PARSERLIB_UNIT_TEST))
# error A private cvc5 parser header was included when not building the parser library or private unit test code.
#endif
#include "cvc5parser_public.h"
-// It would be nice to #include "cvc4autoconfig.h" here, but there are conflicts
-// with antlr3's autoheader stuff, which they export :(
+// It would be nice to #include "base/cvc5config.h" here, but there are
+// conflicts with antlr3's autoheader stuff, which they export :(
//
-// #include "cvc4autoconfig.h"
+// #include "base/cvc5config.h"
#endif /* CVC5PARSER_PRIVATE_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback