diff options
author | Jonathan Protzenko | 2023-01-23 18:43:45 -0800 |
---|---|---|
committer | Son HO | 2023-06-04 21:44:33 +0200 |
commit | dee74ca1f90acb076289286f6f69df65e63604ce (patch) | |
tree | 50ddfb09bf11b20a688021c2413f45213c2c2450 /compiler | |
parent | 262cb9d72593b349af522596cbae29dff03525ea (diff) |
Write a tactic to discharge integer literal proof obligations
Diffstat (limited to '')
-rw-r--r-- | compiler/Extract.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/Extract.ml b/compiler/Extract.ml index 6bda6376..9496fcf9 100644 --- a/compiler/Extract.ml +++ b/compiler/Extract.ml @@ -573,7 +573,7 @@ let mk_formatter (ctx : trans_ctx) (crate_name : string) F.pp_print_string fmt (int_name sv.int_ty); F.pp_print_string fmt ".ofNatCore "; Z.pp_print fmt sv.value; - F.pp_print_string fmt (" (by simp))")) + F.pp_print_string fmt (" (by intlit))")) | Bool b -> let b = if b then "true" else "false" in F.pp_print_string fmt b |