mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Java API: Added exception wrappers and build dependencies.
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
654c02701c
commit
0c1f2a8281
47 changed files with 4908 additions and 4554 deletions
|
@ -159,7 +159,7 @@ class JavaExample
|
|||
Sort t = f.Range();
|
||||
Sort[] dom = f.Domain();
|
||||
|
||||
if (dom.length != 2 || !t.Equals(dom[0]) || !t.Equals(dom[1]))
|
||||
if (dom.length != 2 || !t.equals(dom[0]) || !t.equals(dom[1]))
|
||||
{
|
||||
System.out.println(Integer.toString(dom.length) + " "
|
||||
+ dom[0].toString() + " " + dom[1].toString() + " "
|
||||
|
@ -700,7 +700,7 @@ class JavaExample
|
|||
System.out.println(q2);
|
||||
}
|
||||
|
||||
System.out.println(q1.Equals(q2));
|
||||
System.out.println(q1.equals(q2));
|
||||
}
|
||||
|
||||
// / Prove that <tt>f(x, y) = f(w, v) implies y = v</tt> when
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue