summaryrefslogtreecommitdiff
path: root/src/include/theory_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/theory_engine.h')
-rw-r--r--src/include/theory_engine.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/include/theory_engine.h b/src/include/theory_engine.h
new file mode 100644
index 000000000..f4e36f604
--- /dev/null
+++ b/src/include/theory_engine.h
@@ -0,0 +1,30 @@
+/********************* -*- C++ -*- */
+/** theory_engine.h
+ ** This file is part of the CVC4 prototype.
+ **
+ ** The Analysis of Computer Systems Group (ACSys)
+ ** Courant Institute of Mathematical Sciences
+ ** New York University
+ **/
+
+#ifndef __CVC4_THEORY_ENGINE_H
+#define __CVC4_THEORY_ENGINE_H
+
+namespace CVC4 {
+
+// In terms of abstraction, this is below (and provides services to)
+// PropEngine.
+
+/**
+ * This is essentially an abstraction for a collection of theories. A
+ * TheoryEngine provides services to a PropEngine, making various
+ * T-solvers look like a single unit to the propositional part of
+ * CVC4.
+ */
+class TheoryEngine {
+public:
+};/* class TheoryEngine */
+
+}/* CVC4 namespace */
+
+#endif /* __CVC4_THEORY_ENGINE_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback