summaryrefslogtreecommitdiff
path: root/src/theory/arrays/theory_arrays_instantiator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arrays/theory_arrays_instantiator.h')
-rw-r--r--src/theory/arrays/theory_arrays_instantiator.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/theory/arrays/theory_arrays_instantiator.h b/src/theory/arrays/theory_arrays_instantiator.h
new file mode 100644
index 000000000..6a7c9c3ed
--- /dev/null
+++ b/src/theory/arrays/theory_arrays_instantiator.h
@@ -0,0 +1,51 @@
+/********************* */
+/*! \file theory_arrays_instantiator.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 for theory of arrays
+ **/
+
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__INSTANTIATOR_THEORY_ARRAYS_H
+#define __CVC4__INSTANTIATOR_THEORY_ARRAYS_H
+
+#include "theory/quantifiers_engine.h"
+
+namespace CVC4 {
+namespace theory {
+namespace arrays {
+
+class InstantiatorTheoryArrays : 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:
+ InstantiatorTheoryArrays(context::Context* c, QuantifiersEngine* ie, Theory* th);
+ ~InstantiatorTheoryArrays() {}
+ /** Pre-register a term. */
+ void preRegisterTerm( Node t );
+ /** assertNode function, assertion is asserted to theory */
+ void assertNode( Node assertion );
+ /** identify */
+ std::string identify() const { return std::string("InstantiatorTheoryArrays"); }
+};/* class Instantiatior */
+
+}
+}
+}
+
+#endif \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback