3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 10:55:50 +00:00

Java API: Bugfixes and Example.

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2012-11-27 23:06:35 +00:00
parent 2dab8147f1
commit a9883e972f
13 changed files with 2372 additions and 31 deletions

View file

@ -16,9 +16,18 @@ import com.microsoft.z3.enumerations.*;
public class Expr extends AST
{
/**
* Returns a simplified version of the expression. <param name="p">A set of
* parameters to configure the simplifier</param> <seealso
* cref="Context.SimplifyHelp"/>
* Returns a simplified version of the expression
**/
public Expr Simplify() throws Z3Exception
{
return Simplify(null);
}
/**
* Returns a simplified version of the expression
* A set of
* parameters <param name="p" /> to configure the simplifier
* <seealso cref="Context.SimplifyHelp"/>
**/
public Expr Simplify(Params p) throws Z3Exception
{