3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

Java API: syntactic adjustments, getters, setters,

... convenience parameters, etc.

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2013-01-17 19:31:02 +00:00
parent 3abf397560
commit 4b18c8f9c4
63 changed files with 2939 additions and 2985 deletions

View file

@ -30,7 +30,7 @@ public final class Global
* will set the parameter "decimal" in the module "pp" to true.
* </remarks>
**/
public static void SetParameter(String id, String value)
public static void setParameter(String id, String value)
{
Native.globalParamSet(id, value);
}
@ -44,7 +44,7 @@ public final class Global
* The result string stored in param_value is stored in a shared location.
* </remarks>
**/
public static String GetParameter(String id)
public static String getParameter(String id)
{
Native.StringPtr res = new Native.StringPtr();
if (!Native.globalParamGet(id, res))
@ -60,7 +60,7 @@ public final class Global
* </remarks>
* @seealso SetParameter
**/
public static void ResetParameters()
public static void resetParameters()
{
Native.globalParamResetAll();
}