Skip to content

Commit 6e795f1

Browse files
committed
1 parent 5c6033c commit 6e795f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lia/Lia.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Section certif.
113113
| Some z => (vm, PEc z)
114114
| None =>
115115
let (vm,p) := find_var vm h in
116-
(vm,PEX p)
116+
(vm,@PEX _ p)
117117
end
118118
end.
119119

@@ -490,7 +490,7 @@ Section certif.
490490

491491
Fixpoint bounded_pexpr (p:positive) (pe:PExpr Z) :=
492492
match pe with
493-
| PEc _ => true
493+
| PEO | PEI | PEc _ => true
494494
| @PEX _ x => Zlt_bool (Zpos x) (Zpos p)
495495
| PEadd pe1 pe2
496496
| PEsub pe1 pe2
@@ -550,7 +550,7 @@ Section certif.
550550
check_atom h Typ.TZ ->
551551
match build_z_atom h with
552552
| Some z => (vm, PEc z)
553-
| None => let (vm0, p) := find_var vm h in (vm0, PEX p)
553+
| None => let (vm0, p) := find_var vm h in (vm0, @PEX _ p)
554554
end = (vm', pe) ->
555555
wf_vmap vm ->
556556
wf_vmap vm' /\

0 commit comments

Comments
 (0)