3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

Improved memory use of the Java API. Thanks to Joerg Pfaehler for reporting this issue!

+ formatting

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2015-01-30 21:04:18 -06:00
parent 3b78509d0a
commit d7a62baef4
60 changed files with 3149 additions and 2992 deletions

View file

@ -27,7 +27,7 @@ public class Goal extends Z3Object
{
/**
* The precision of the goal.
* Remarks: Goals can be transformed using over
* Remarks: Goals can be transformed using over
* and under approximations. An under approximation is applied when the
* objective is to find a model for a given goal. An over approximation is
* applied when the objective is to find a proof for a given goal.
@ -97,7 +97,7 @@ public class Goal extends Z3Object
/**
* The depth of the goal.
* Remarks: This tracks how many transformations
* Remarks: This tracks how many transformations
* were applied to it.
**/
public int getDepth() throws Z3Exception
@ -176,7 +176,7 @@ public class Goal extends Z3Object
/**
* Simplifies the goal.
* Remarks: Essentially invokes the `simplify' tactic
* Remarks: Essentially invokes the `simplify' tactic
* on the goal.
**/
public Goal simplify() throws Z3Exception
@ -192,7 +192,7 @@ public class Goal extends Z3Object
/**
* Simplifies the goal.
* Remarks: Essentially invokes the `simplify' tactic
* Remarks: Essentially invokes the `simplify' tactic
* on the goal.
**/
public Goal simplify(Params p) throws Z3Exception