diff --git a/src/plugins/wp/Cfloat.ml b/src/plugins/wp/Cfloat.ml index 39aa508ee32fa5f528ad703960827edae45accab..460b93f8db9c6b8c13154c5d6e4ec98c455d4322 100644 --- a/src/plugins/wp/Cfloat.ml +++ b/src/plugins/wp/Cfloat.ml @@ -196,12 +196,14 @@ let printers = [ Printf.sprintf "%.64g" ; ] -let re_int = Str.regexp "[0-9]+" +let re_int_float = Str.regexp "\\(-?[0-9]+\\)\\(e[+-]?[0-9]+\\)?$" let force_float r = - if Str.string_match re_int r 0 && - Str.match_end () = String.length r - then (r ^ ".0") else r + if Str.string_match re_int_float r 0 + then + let group n r = try Str.matched_group n r with Not_found -> "" + in group 1 r ^ ".0" ^ group 2 r + else r let float_lit ulp (q : Q.t) = let v = match ulp with