3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-23 07:24:02 +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

@ -34,7 +34,7 @@ class ASTVector extends Z3Object
* Retrieves the i-th object in the vector.
* Remarks: May throw an {@code IndexOutOfBoundsException} when
* {@code i} is out of range.
* @param i Index
* @param i Index
*
* @return An AST
* @throws Z3Exception
@ -54,7 +54,7 @@ class ASTVector extends Z3Object
/**
* Resize the vector to {@code newSize}.
* @param newSize The new size of the vector.
* @param newSize The new size of the vector.
**/
public void resize(int newSize) throws Z3Exception
{
@ -64,7 +64,7 @@ class ASTVector extends Z3Object
/**
* Add the AST {@code a} to the back of the vector. The size is
* increased by 1.
* @param a An AST
* @param a An AST
**/
public void push(AST a) throws Z3Exception
{
@ -73,7 +73,7 @@ class ASTVector extends Z3Object
/**
* Translates all ASTs in the vector to {@code ctx}.
* @param ctx A context
* @param ctx A context
*
* @return A new ASTVector
* @throws Z3Exception