summaryrefslogtreecommitdiff
path: root/src/theory/instantiator_default.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/instantiator_default.h')
-rw-r--r--src/theory/instantiator_default.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/theory/instantiator_default.h b/src/theory/instantiator_default.h
new file mode 100644
index 000000000..351d0c4a3
--- /dev/null
+++ b/src/theory/instantiator_default.h
@@ -0,0 +1,48 @@
+/********************* */
+/*! \file instantiator_default.h
+ ** \verbatim
+ ** Original author: ajreynol
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 prototype.
+ ** Copyright (c) 2009, 2010, 2011 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_default
+ **/
+
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__INSTANTIATOR_DEFAULT_H
+#define __CVC4__INSTANTIATOR_DEFAULT_H
+
+#include <string>
+#include "theory/quantifiers_engine.h"
+
+namespace CVC4 {
+namespace theory {
+
+class InstantiatorDefault : public Instantiator {
+ friend class QuantifiersEngine;
+protected:
+ /** reset instantiation round */
+ void processResetInstantiationRound(Theory::Effort effort);
+ /** process quantifier */
+ int process(Node f, Theory::Effort effort, int e, int limitInst = 0);
+public:
+ InstantiatorDefault(context::Context* c, QuantifiersEngine* ie, Theory* th);
+ ~InstantiatorDefault() { }
+ /** check function, assertion is asserted to theory */
+ void assertNode( Node assertion );
+ /** identify */
+ std::string identify() const { return std::string("InstantiatorDefault"); }
+};/* class Instantiatior */
+
+}/* CVC4::theory namespace */
+}/* CVC4 namespace */
+
+#endif /* __CVC4__INSTANTIATOR_DEFAULT_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback