We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2c4520 commit ef71e73Copy full SHA for ef71e73
src/cdomain/value/cdomains/floatDomain.ml
@@ -220,7 +220,9 @@ module FloatIntervalImpl(Float_t : CFloatType) = struct
220
| _ -> Top
221
222
(**for QCheck: should describe how to generate random values and shrink possible counter examples *)
223
- let arbitrary () = QCheck.map convert_arb (QCheck.option (QCheck.pair QCheck.float QCheck.float))
+ let arbitrary () =
224
+ let gen = QCheck.map convert_arb (QCheck.option (QCheck.pair QCheck.float QCheck.float)) in
225
+ QCheck.set_print show gen
226
227
let of_interval' interval =
228
let x = norm @@ Interval interval
0 commit comments