3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-08 23:23:23 +00:00

Renamed Z3_mk_double to Z3_mk_fpa_double for consistency

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2014-06-11 13:27:21 +01:00
parent c3263e4731
commit c2a2d2d0df
2 changed files with 3 additions and 3 deletions

View file

@ -121,9 +121,9 @@ extern "C" {
Z3_CATCH_RETURN(0);
}
Z3_ast Z3_API Z3_mk_double(Z3_context c, double v, Z3_sort ty) {
Z3_ast Z3_API Z3_mk_fpa_double(Z3_context c, double v, Z3_sort ty) {
Z3_TRY;
LOG_Z3_mk_double(c, v, ty);
LOG_Z3_mk_fpa_double(c, v, ty);
RESET_ERROR_CODE();
api::context * ctx = mk_c(c);
scoped_mpf tmp(ctx->float_util().fm());