3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00

add basic example of using optimizaiton context to Java as raised in issue #179

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-07-30 11:32:14 -03:00
parent 0e886cfe5e
commit a0894ac7bf
2 changed files with 34 additions and 1 deletions

View file

@ -109,6 +109,14 @@ public class Optimize extends Z3Object
{
return getLower();
}
/**
* Print a string representation of the handle.
**/
public String toString()
{
return getValue().toString();
}
}
/**