summaryrefslogtreecommitdiff
path: root/src/theory/instantiator_tables_template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/instantiator_tables_template.cpp')
-rw-r--r--src/theory/instantiator_tables_template.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/theory/instantiator_tables_template.cpp b/src/theory/instantiator_tables_template.cpp
new file mode 100644
index 000000000..7a78c3aae
--- /dev/null
+++ b/src/theory/instantiator_tables_template.cpp
@@ -0,0 +1,40 @@
+/********************* */
+/*! \file instantiator_tables_template.cpp
+ ** \verbatim
+ ** Original author: mdeters
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 prototype.
+ ** Copyright (c) 2009, 2010, 2011, 2012 The Analysis of Computer Systems Group (ACSys)
+ ** Courant Institute of Mathematical Sciences
+ ** New York University
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief Instantiator tables for quantifier-friendly theories
+ **
+ ** This file contains template code for the instantiator tables that are
+ ** generated from the Theory kinds files.
+ **/
+
+#include "context/context.h"
+#include "theory/quantifiers_engine.h"
+
+${instantiator_includes}
+
+#line 26 "${template}"
+
+namespace CVC4 {
+namespace theory {
+
+Instantiator* Theory::makeInstantiator(context::Context* c, theory::QuantifiersEngine* qe) {
+ switch(d_id) {
+${make_instantiator_cases}
+#line 34 "${template}"
+ default:
+ Unhandled(d_id);
+ }
+}
+
+}/* CVC4::theory namespace */
+}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback