summaryrefslogtreecommitdiff
path: root/src/main/main.h
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/main/main.h
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/main/main.h')
-rw-r--r--src/main/main.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/main/main.h b/src/main/main.h
index 121f9d951..54abbdbe9 100644
--- a/src/main/main.h
+++ b/src/main/main.h
@@ -18,8 +18,8 @@
#include <memory>
#include <string>
+#include "base/cvc5config.h"
#include "base/exception.h"
-#include "cvc4autoconfig.h"
#include "options/options.h"
#ifndef CVC5__MAIN__MAIN_H
@@ -62,19 +62,11 @@ extern bool segvSpin;
/** A pointer to the options in play */
extern thread_local Options* pOptions;
-/** Initialize the driver. Sets signal handlers for SIGINT and SIGSEGV.
- * This can throw a cvc5::Exception.
- */
-void cvc4_init();
-
-/** Shutdown the driver. Frees memory for the signal handlers. */
-void cvc4_shutdown() noexcept;
-
} // namespace main
} // namespace cvc5
-/** Actual Cvc4 driver functions **/
-int runCvc4(int argc, char* argv[], cvc5::Options&);
+/** Actual cvc5 driver functions **/
+int runCvc5(int argc, char* argv[], cvc5::Options&);
void printUsage(cvc5::Options&, bool full = false);
#endif /* CVC5__MAIN__MAIN_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback