summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
Diffstat (limited to 'test/system')
-rw-r--r--test/system/CVC4JavaTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/CVC4JavaTest.java b/test/system/CVC4JavaTest.java
index 168961b5c..5a654d03f 100644
--- a/test/system/CVC4JavaTest.java
+++ b/test/system/CVC4JavaTest.java
@@ -17,7 +17,7 @@ import edu.nyu.acsys.CVC4.ParserBuilder;
public class CVC4JavaTest {
public static void main(String[] args) {
try {
- System.loadLibrary("CVC4");
+ System.loadLibrary("cvc4jni");
//CVC4.getDebugChannel().on("current");
@@ -42,7 +42,7 @@ public class CVC4JavaTest {
Result r = smt.checkSat(e);
boolean correct = r.isSat() == Result.Sat.UNSAT;
- System.out.println(smt.getStatisticsRegistry());
+ System.out.println(smt.getStatistics());
System.exit(correct ? 0 : 1);
} catch(Exception e) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback