3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25: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

@ -24,7 +24,7 @@ class ASTMap extends Z3Object
{
/**
* Checks whether the map contains the key {@code k}.
* @param k An AST
* @param k An AST
*
* @return True if {@code k} is a key in the map, false
* otherwise.
@ -40,7 +40,7 @@ class ASTMap extends Z3Object
* Finds the value associated with the key {@code k}.
* Remarks: This function signs an error when {@code k} is not a key in
* the map.
* @param k An AST
* @param k An AST
*
* @throws Z3Exception
**/
@ -52,8 +52,8 @@ class ASTMap extends Z3Object
/**
* Stores or replaces a new key/value pair in the map.
* @param k The key AST
* @param v The value AST
* @param k The key AST
* @param v The value AST
**/
public void insert(AST k, AST v) throws Z3Exception
{
@ -64,7 +64,7 @@ class ASTMap extends Z3Object
/**
* Erases the key {@code k} from the map.
* @param k An AST
* @param k An AST
**/
public void erase(AST k) throws Z3Exception
{