summaryrefslogtreecommitdiff
path: root/src/theory/sep/theory_sep_rewriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sep/theory_sep_rewriter.h')
-rw-r--r--src/theory/sep/theory_sep_rewriter.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/theory/sep/theory_sep_rewriter.h b/src/theory/sep/theory_sep_rewriter.h
new file mode 100644
index 000000000..02adbebe5
--- /dev/null
+++ b/src/theory/sep/theory_sep_rewriter.h
@@ -0,0 +1,53 @@
+/********************* */
+/*! \file theory_sep_rewriter.h
+ ** \verbatim
+ ** Original author: Andrew Reynolds
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2014 New York University and The University of Iowa
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief [[ Add one-line brief description here ]]
+ **
+ ** [[ Add lengthier description here ]]
+ ** \todo document this file
+ **/
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__THEORY__SEP__THEORY_SEP_REWRITER_H
+#define __CVC4__THEORY__SEP__THEORY_SEP_REWRITER_H
+
+#include "theory/rewriter.h"
+#include "theory/type_enumerator.h"
+
+namespace CVC4 {
+namespace theory {
+namespace sep {
+
+
+class TheorySepRewriter {
+private:
+ static void getStarChildren( Node n, std::vector< Node >& s_children, std::vector< Node >& ns_children );
+ static void getAndChildren( Node n, std::vector< Node >& s_children, std::vector< Node >& ns_children );
+ static bool isSpatial( Node n, std::map< Node, bool >& visited );
+public:
+
+ static RewriteResponse postRewrite(TNode node);
+ static inline RewriteResponse preRewrite(TNode node) {
+ Trace("sep-prerewrite") << "Sep::preRewrite returning " << node << std::endl;
+ return RewriteResponse(REWRITE_DONE, node);
+ }
+
+ static inline void init() {}
+ static inline void shutdown() {}
+
+};/* class TheorySepRewriter */
+
+}/* CVC4::theory::sep namespace */
+}/* CVC4::theory namespace */
+}/* CVC4 namespace */
+
+#endif /* __CVC4__THEORY__SEP__THEORY_SEP_REWRITER_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback