summaryrefslogtreecommitdiff
path: root/src/proof/unsat_core.i
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-02-12 14:48:10 -0800
committerGitHub <noreply@github.com>2020-02-12 16:48:10 -0600
commit3ba75ef701deb17a3871ca3b04d9596afac1c527 (patch)
tree94f6f7a75bcfe92f5d7a63a4ebb40201426d1819 /src/proof/unsat_core.i
parentf38cd31ddfd3d5caa2ffe3a0ffafbb2b0394391b (diff)
Rename Java package to edu.stanford.CVC4 (#3752)
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