3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

FPA API fixes and examples

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2014-06-11 17:55:31 +01:00
parent ca89b120d3
commit 129e2f5e23
3 changed files with 40 additions and 19 deletions

View file

@ -2605,8 +2605,6 @@ void fpa_example() {
printf("\nFPA-example\n");
LOG_MSG("FPA-example");
enable_trace("fpa");
cfg = Z3_mk_config();
ctx = Z3_mk_context(cfg);
Z3_del_config(cfg);
@ -2620,13 +2618,35 @@ void fpa_example() {
symbol_y = Z3_mk_string_symbol(ctx, "y");
x = Z3_mk_const(ctx, symbol_x, double_sort);
y = Z3_mk_const(ctx, symbol_y, double_sort);
n = Z3_mk_double(ctx, 42.0, double_sort);
n = Z3_mk_fpa_double(ctx, 42.0, double_sort);
c = Z3_mk_eq(ctx, Z3_mk_fpa_add(ctx, rm, x, y), n);
Z3_symbol q_s = Z3_mk_string_symbol(ctx, "q");
Z3_ast q = Z3_mk_const(ctx, q_s, double_sort);
c = Z3_mk_eq(ctx, q, Z3_mk_fpa_add(ctx, rm, x, y));
Z3_ast args[2] = { c, Z3_mk_eq(ctx, q, n) };
c = Z3_mk_and(ctx, 2, (Z3_ast*)&args);
printf("c = %s\n", Z3_ast_to_string(ctx, c));
Z3_assert_cnstr(ctx, c);
if (Z3_check(ctx) != Z3_L_TRUE)
printf("FPA-example not satisfied!\n");
Z3_model m = 0;
Z3_lbool result = Z3_check_and_get_model(ctx, &m);
switch (result) {
case Z3_L_FALSE:
printf("unsat\n");
break;
case Z3_L_UNDEF:
printf("unknown\n");
break;
case Z3_L_TRUE:
printf("sat\n%s\n", Z3_model_to_string(ctx, m));
break;
}
if (m)
Z3_del_model(ctx, m);
Z3_del_context(ctx);
}
@ -2676,5 +2696,6 @@ int main() {
smt2parser_example();
substitute_example();
substitute_vars_example();
fpa_example();
return 0;
}

View file

@ -3533,7 +3533,7 @@ namespace Microsoft.Z3
public FPNum MkFP(double v, FPSort s)
{
Contract.Ensures(Contract.Result<FPNum>() != null);
return new FPNum(this, Native.Z3_mk_double(this.nCtx, v, s.NativeObject));
return new FPNum(this, Native.Z3_mk_fpa_double(this.nCtx, v, s.NativeObject));
}
/// <summary>

View file

@ -129,7 +129,7 @@ extern "C" {
\sa Z3_mk_numeral
def_API('Z3_mk_double', AST, (_in(CONTEXT), _in(DOUBLE), _in(SORT)))
def_API('Z3_mk_fpa_double', AST, (_in(CONTEXT), _in(DOUBLE), _in(SORT)))
*/
Z3_ast Z3_API Z3_mk_fpa_double(__in Z3_context c, __in double v, __in Z3_sort ty);