Skip to content
Snippets Groups Projects
Commit f9657363 authored by Michele Alberti's avatar Michele Alberti
Browse files

[Marabou] Custom format for negative reals.

parent d44a0f49
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,8 @@ let number_format =
Why3.Number.hex_int_support = `Unsupported;
Why3.Number.oct_int_support = `Unsupported;
Why3.Number.bin_int_support = `Unsupported;
Why3.Number.negative_real_support = `Default;
Why3.Number.negative_real_support =
`Custom (fun fmt f -> Fmt.pf fmt "-%t" f);
Why3.Number.dec_real_support = `Default;
Why3.Number.hex_real_support = `Unsupported;
Why3.Number.frac_real_support = `Unsupported (fun _ _ -> assert false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment