Skip to content

Commit 93c065c

Browse files
authored
Merge pull request #103 from SkySkimmer/split-nota
Adapt to rocq-prover/rocq#20926 (code movement)
2 parents 5632884 + 810180b commit 93c065c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/bignums_syntax.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ let word_of_pos_bigint ?loc hght n =
9292
let ref_WW = DAst.make ?loc @@ GRef (Lazy.force zn2z_WW, None) in
9393
let rec decomp hgt n =
9494
if hgt <= 0 then
95-
DAst.make ?loc (GInt (Notation.int63_of_pos_bigint n))
95+
DAst.make ?loc (GInt (PrimNotations.int63_of_pos_bigint n))
9696
else if Z.equal n Z.zero then
9797
DAst.make ?loc @@ GApp (ref_W0, [DAst.make ?loc @@ GHole (GInternalHole)])
9898
else
@@ -203,7 +203,7 @@ let bignums_obj =
203203

204204
let declare_numeral_interpreter uid sc dir interp (patl,uninterp,b) =
205205
(* unsynchronized state *)
206-
let uid = Notation.register_bignumeral_interpretation uid (interp,uninterp) in
206+
let uid = PrimNotations.register_bignumeral_interpretation uid (interp,uninterp) in
207207
let interp () = Lib.add_leaf (bignums_obj {
208208
(* we wrap in out own object (to get superglobal instead of export),
209209
so we pass local to the Notation layer *)

0 commit comments

Comments
 (0)