diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2017-06-15 22:00:17 +0200 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2017-06-15 22:00:17 +0200 |
commit | 6467119bd15395bb5fae7d9c19dde17293842bd8 (patch) | |
tree | 809a7156570542f796b4ed94d901a83468d78dc4 /plugins/ssr | |
parent | 9beec0fc6cc283294bbbda363a3f788ae56347d5 (diff) | |
parent | 0b5ef21f936acbb89fa5b272efdcf3cf03de58cc (diff) |
Merge PR#719: Constrexpr.Numeral without bigint
Diffstat (limited to 'plugins/ssr')
-rw-r--r-- | plugins/ssr/ssrparser.ml4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/ssr/ssrparser.ml4 b/plugins/ssr/ssrparser.ml4 index 3ea8c2431..09917339a 100644 --- a/plugins/ssr/ssrparser.ml4 +++ b/plugins/ssr/ssrparser.ml4 @@ -346,7 +346,8 @@ let interp_index ist gl idx = | Some c -> let rc = Detyping.detype false [] (pf_env gl) (project gl) c in begin match Notation.uninterp_prim_token rc with - | _, Constrexpr.Numeral bigi -> int_of_string (Bigint.to_string bigi) + | _, Constrexpr.Numeral (s,b) -> + let n = int_of_string s in if b then n else -n | _ -> raise Not_found end | None -> raise Not_found |