mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Java API: bugfixes
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
29b896b0bf
commit
519d308b86
|
@ -806,7 +806,6 @@ class JavaExample
|
|||
{
|
||||
System.out.println("BasicTests");
|
||||
|
||||
Symbol qi = ctx.MkSymbol(1);
|
||||
Symbol fname = ctx.MkSymbol("f");
|
||||
Symbol x = ctx.MkSymbol("x");
|
||||
Symbol y = ctx.MkSymbol("y");
|
||||
|
@ -2207,7 +2206,8 @@ class JavaExample
|
|||
} catch (Z3Exception ex)
|
||||
{
|
||||
System.out.println("Z3 Managed Exception: " + ex.getMessage());
|
||||
System.out.println("Stack trace: " + ex.getStackTrace());
|
||||
System.out.println("Stack trace: ");
|
||||
ex.printStackTrace(System.out);
|
||||
} catch (TestFailedException ex)
|
||||
{
|
||||
System.out.println("TEST CASE FAILED: " + ex.getMessage());
|
||||
|
|
|
@ -2974,23 +2974,15 @@ public class Context extends IDisposable
|
|||
|
||||
void CheckContextMatch(Z3Object other) throws Z3Exception
|
||||
{
|
||||
|
||||
if (this == other.Context())
|
||||
throw new Z3Exception("Context mismatch");
|
||||
if (this != other.Context())
|
||||
throw new Z3Exception("Context mismatch");
|
||||
}
|
||||
|
||||
void CheckContextMatch(Z3Object[] arr) throws Z3Exception
|
||||
{
|
||||
|
||||
if (arr != null)
|
||||
{
|
||||
for (Z3Object a : arr)
|
||||
{
|
||||
// It was an assume, now we added the precondition, and we made
|
||||
// it into an assert
|
||||
CheckContextMatch(a);
|
||||
}
|
||||
}
|
||||
if (arr != null)
|
||||
for (Z3Object a : arr)
|
||||
CheckContextMatch(a);
|
||||
}
|
||||
|
||||
private ASTDecRefQueue m_AST_DRQ = new ASTDecRefQueue();
|
||||
|
|
Loading…
Reference in a new issue