summaryrefslogtreecommitdiff
path: root/src/util/unsat_core.i
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2014-08-20 18:16:01 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2014-08-22 17:58:29 -0400
commitf76b86fac5da035de8531fddbd6a694103b3efaf (patch)
treef01454f07a210ec51a3f1f82556446d2dd9b80e4 /src/util/unsat_core.i
parent2dbe1f150d30f0fb0c8522f891104270ce09db4c (diff)
Java-side interface improvements for unsat cores.
Diffstat (limited to 'src/util/unsat_core.i')
-rw-r--r--src/util/unsat_core.i46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/util/unsat_core.i b/src/util/unsat_core.i
index 78b1360e7..9fc0dcda6 100644
--- a/src/util/unsat_core.i
+++ b/src/util/unsat_core.i
@@ -2,4 +2,50 @@
#include "util/unsat_core.h"
%}
+#ifdef SWIGJAVA
+
+// Instead of UnsatCore::begin() and end(), create an
+// iterator() method on the Java side that returns a Java-style
+// Iterator.
+%ignore CVC4::UnsatCore::begin();
+%ignore CVC4::UnsatCore::end();
+%ignore CVC4::UnsatCore::begin() const;
+%ignore CVC4::UnsatCore::end() const;
+%extend CVC4::UnsatCore {
+ CVC4::JavaIteratorAdapter<CVC4::UnsatCore> iterator() {
+ return CVC4::JavaIteratorAdapter<CVC4::UnsatCore>(*$self);
+ }
+}
+
+// UnsatCore is "iterable" on the Java side
+%typemap(javainterfaces) CVC4::UnsatCore "java.lang.Iterable<edu.nyu.acsys.CVC4.Expr>";
+
+// the JavaIteratorAdapter should not be public, and implements Iterator
+%typemap(javaclassmodifiers) CVC4::JavaIteratorAdapter<CVC4::UnsatCore> "class";
+%typemap(javainterfaces) CVC4::JavaIteratorAdapter<CVC4::UnsatCore> "java.util.Iterator<edu.nyu.acsys.CVC4.Expr>";
+// add some functions to the Java side (do it here because there's no way to do these in C++)
+%typemap(javacode) CVC4::JavaIteratorAdapter<CVC4::UnsatCore> "
+ public void remove() {
+ throw new java.lang.UnsupportedOperationException();
+ }
+
+ public edu.nyu.acsys.CVC4.Expr next() {
+ if(hasNext()) {
+ return getNext();
+ } else {
+ throw new java.util.NoSuchElementException();
+ }
+ }
+"
+// getNext() just allows C++ iterator access from Java-side next(), make it private
+%javamethodmodifiers CVC4::JavaIteratorAdapter<CVC4::UnsatCore>::getNext() "private";
+
+// map the types appropriately
+%typemap(jni) CVC4::UnsatCore::const_iterator::value_type "jobject";
+%typemap(jtype) CVC4::UnsatCore::const_iterator::value_type "edu.nyu.acsys.CVC4.Expr";
+%typemap(jstype) CVC4::UnsatCore::const_iterator::value_type "edu.nyu.acsys.CVC4.Expr";
+%typemap(javaout) CVC4::UnsatCore::const_iterator::value_type { return $jnicall; }
+
+#endif /* SWIGJAVA */
+
%include "util/unsat_core.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback