Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions theories/Storage/Instances/AVL.v
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
From Coq Require Import
FMapInterface
FMapAVL
OrderedType
OrderedTypeEx
ZArith.
OrderedType.

Require Import Classes.

Module Type Make (E : OrderedType).
Include FMapAVL.Make E.

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.lt_trans"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.eq_trans"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.eq_sym"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.eq_refl"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.lt"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.eq"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.t"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.t.u0"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.lt_trans"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.eq_trans"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.eq_sym"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.eq_refl"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.lt"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.eq"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.t"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E.t.u0"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E"!

Check warning on line 8 in theories/Storage/Instances/AVL.v

View workflow job for this annotation

GitHub Actions / build (8.20, default)

Trying to mask the absolute name "E"!

Parameter dec_eq_is_eq : forall a b, E.eq a b <-> a = b.

Expand Down