summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-09-28 16:46:13 +0000
committerMorgan Deters <mdeters@gmail.com>2012-09-28 16:46:13 +0000
commitc0c351a89871e0a6881668fa1a8d87349ab8af8e (patch)
tree2fb912cfd9e29b7cbfc2b97f09a5581831168984 /examples
parentad0a71e2782bc291ba9f808d24df2e1d8ca1b41e (diff)
* fix compatibility library naming for SMT-LIBv1
* change name of JNI library to "libcvc4jni", which works better with Java's System.loadLibrary(). (this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'examples')
-rw-r--r--examples/SimpleVC.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/SimpleVC.java b/examples/SimpleVC.java
index a5e2d4e4f..41c4542fd 100644
--- a/examples/SimpleVC.java
+++ b/examples/SimpleVC.java
@@ -37,7 +37,7 @@ import edu.nyu.acsys.CVC4.*;
public class SimpleVC {
public static void main(String[] args) {
- System.loadLibrary("CVC4");
+ System.loadLibrary("cvc4jni");
ExprManager em = new ExprManager();
SmtEngine smt = new SmtEngine(em);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback