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:
parent
2dab8147f1
commit
a9883e972f
13 changed files with 2372 additions and 31 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue