summaryrefslogtreecommitdiff
path: root/src/proof/unsat_core.i
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-02-11 23:34:39 -0800
committerAndres Noetzli <andres.noetzli@gmail.com>2020-02-11 23:34:39 -0800
commit850ac17e46c97cab39122bfcd01dcbe459d1589a (patch)
treeb30512eb4407fc4157d061d7b053f006e6df0480 /src/proof/unsat_core.i
parent0858188716609ae8a45e542bc4e054e675f2676d (diff)
Rename Java package to edu.stanford.CVC4
Fixes #1519.
Diffstat (limited to 'src/proof/unsat_core.i')
-rw-r--r--src/proof/unsat_core.i6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proof/unsat_core.i b/src/proof/unsat_core.i
index d3fd615ce..c37c8551d 100644
--- a/src/proof/unsat_core.i
+++ b/src/proof/unsat_core.i
@@ -35,18 +35,18 @@
}
// UnsatCore is "iterable" on the Java side
-%typemap(javainterfaces) CVC4::UnsatCore "java.lang.Iterable<edu.nyu.acsys.CVC4.Expr>";
+%typemap(javainterfaces) CVC4::UnsatCore "java.lang.Iterable<edu.stanford.CVC4.Expr>";
// the JavaIteratorAdapter should not be public, and implements Iterator
%typemap(javaclassmodifiers) CVC4::JavaIteratorAdapter<CVC4::UnsatCore, CVC4::Expr> "class";
-%typemap(javainterfaces) CVC4::JavaIteratorAdapter<CVC4::UnsatCore, CVC4::Expr> "java.util.Iterator<edu.nyu.acsys.CVC4.Expr>";
+%typemap(javainterfaces) CVC4::JavaIteratorAdapter<CVC4::UnsatCore, CVC4::Expr> "java.util.Iterator<edu.stanford.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, CVC4::Expr> "
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
- public edu.nyu.acsys.CVC4.Expr next() {
+ public edu.stanford.CVC4.Expr next() {
if(hasNext()) {
return getNext();
} else {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback