Skip to content

Commit a0480bf

Browse files
committed
Compile with Coq 8.18
1 parent cf0cafe commit a0480bf

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

complete_lattice.v

+6-9
Original file line numberDiff line numberDiff line change
@@ -435,19 +435,16 @@ HB.mixin Record isSetJoinMorphism d (L : completeLatticeType d)
435435
omorphSJ : set_join_morphism apply;
436436
}.
437437

438-
#[infer(L,L')]
439438
HB.structure Definition MeetCompleteLatticeMorphism
440439
d (L : completeLatticeType d) d' (L' : completeLatticeType d') :=
441440
{f of isSetMeetMorphism d L d' L' f & @Order.MeetLatticeMorphism d L d' L' f
442441
& @Order.TLatticeMorphism d L d' L' f}.
443442

444-
#[infer(L,L')]
445443
HB.structure Definition JoinCompleteLatticeMorphism
446444
d (L : completeLatticeType d) d' (L' : completeLatticeType d') :=
447445
{f of isSetJoinMorphism d L d' L' f & @Order.JoinLatticeMorphism d L d' L' f
448446
& @Order.BLatticeMorphism d L d' L' f}.
449447

450-
#[infer(L,L')]
451448
HB.structure Definition CompleteLatticeMorphism
452449
d (L : completeLatticeType d) d' (L' : completeLatticeType d') :=
453450
{f of @MeetCompleteLatticeMorphism d L d' L' f
@@ -502,11 +499,11 @@ HB.instance Definition _ := isJoinCompleteLatticeMorphism.Build d L d' L' f
502499
HB.end.
503500

504501
Notation "{ 'mclmorphism' T -> T' }" :=
505-
(MeetCompleteLatticeMorphism.type _ T%type _ T'%type) : type_scope.
502+
(@MeetCompleteLatticeMorphism.type _ T%type _ T'%type) : type_scope.
506503
Notation "{ 'jclmorphism' T -> T' }" :=
507-
(JoinCompleteLatticeMorphism.type _ T%type _ T'%type) : type_scope.
504+
(@JoinCompleteLatticeMorphism.type _ T%type _ T'%type) : type_scope.
508505
Notation "{ 'clmorphism' T -> T' }" :=
509-
(CompleteLatticeMorphism.type _ T%type _ T'%type) : type_scope.
506+
(@CompleteLatticeMorphism.type _ T%type _ T'%type) : type_scope.
510507
Notation "[ 'mclmorphism' 'of' f 'as' g ]" :=
511508
(MeetCompleteLatticeMorphism.clone _ _ _ _ f%function g)
512509
(at level 0, format "[ 'mclmorphism' 'of' f 'as' g ]") : form_scope.
@@ -593,15 +590,15 @@ HB.mixin Record isSetJoinClosed d (T : completeLatticeType d)
593590

594591
(* Structures for stability properties *)
595592

596-
#[infer(T), short(type="meetCompleteLatticeClosed")]
593+
#[short(type="meetCompleteLatticeClosed")]
597594
HB.structure Definition MeetCompleteLatticeClosed d T :=
598595
{S of isSetMeetClosed d T S & @Order.TMeetLatticeClosed d T S}.
599596

600-
#[infer(T), short(type="joinCompleteLatticeClosed")]
597+
#[short(type="joinCompleteLatticeClosed")]
601598
HB.structure Definition JoinCompleteLatticeClosed d T :=
602599
{S of isSetJoinClosed d T S & @Order.BJoinLatticeClosed d T S}.
603600

604-
#[infer(T), short(type="completeLatticeClosed")]
601+
#[short(type="completeLatticeClosed")]
605602
HB.structure Definition CompleteLatticeClosed d T :=
606603
{S of @MeetCompleteLatticeClosed d T S & @JoinCompleteLatticeClosed d T S}.
607604

0 commit comments

Comments
 (0)