mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Fixed bug (codeplex issue 102)
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
6f7c9607ea
commit
a833c9ac41
4 changed files with 294 additions and 288 deletions
|
@ -93,6 +93,9 @@ namespace test_mapi
|
|||
1,
|
||||
new Pattern[] { p } /* patterns */);
|
||||
|
||||
if (q.IsTrue)
|
||||
Console.WriteLine("is true.");
|
||||
|
||||
return q;
|
||||
}
|
||||
|
||||
|
|
|
@ -89,6 +89,9 @@ class JavaExample
|
|||
names, /* names of quantified variables */
|
||||
eq, 1, new Pattern[] { p } /* patterns */, null, null, null);
|
||||
|
||||
if (q.isTrue())
|
||||
System.out.println("is true");
|
||||
|
||||
return q;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue