Skip to content

Commit

Permalink
Merge pull request #19 from coq-community/compat-8.11
Browse files Browse the repository at this point in the history
Compat 8.11
  • Loading branch information
palmskog authored Feb 1, 2020
2 parents cfee1d4 + b5f3927 commit 806e103
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion _CoqProject
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

-arg -w -arg +default

theories/Aux.v
theories/AuxLib.v
theories/Cover.v
theories/HeightPred.v
theories/Ordered.v
Expand Down
2 changes: 1 addition & 1 deletion theories/Aux.v → theories/AuxLib.v
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(* 02110-1301 USA *)

(**
Proof of Huffman algorithm: Aux.v
Proof of Huffman algorithm: AuxLib.v
Auxiliary functions & theorems
Expand Down
2 changes: 1 addition & 1 deletion theories/Code.v
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*)

Require Bool.Bool.
From Huffman Require Export Aux.
From Huffman Require Export AuxLib.
From Huffman Require Export Permutation.
From Huffman Require Export UniqueKey.
From Huffman Require Export Frequency.
Expand Down
2 changes: 1 addition & 1 deletion theories/Frequency.v
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Initial author: [email protected] (2003)
*)

From Huffman Require Import Aux.
From Huffman Require Import AuxLib.
Require Import List.
From Huffman Require Import UniqueKey.
From Huffman Require Import Permutation.
Expand Down
2 changes: 1 addition & 1 deletion theories/HeightPred.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
Initial author: [email protected] (2003)
*)

From Huffman Require Export Aux.
From Huffman Require Export AuxLib.
From Huffman Require Export OrderedCover.
From Huffman Require Export WeightTree.
Require Import ArithRing.
Expand Down
2 changes: 1 addition & 1 deletion theories/Ordered.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*)

From Huffman Require Export Permutation.
From Huffman Require Export Aux.
From Huffman Require Export AuxLib.

Section ordered.
Variable A : Type.
Expand Down
2 changes: 1 addition & 1 deletion theories/PBTree.v
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*)

Require Import List.
From Huffman Require Import Aux.
From Huffman Require Import AuxLib.
From Huffman Require Import Code.
From Huffman Require Import Build.
From Huffman Require Import ISort.
Expand Down
2 changes: 1 addition & 1 deletion theories/PBTree2BTree.v
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Initial author: [email protected] (2003)
*)

From Huffman Require Export Aux.
From Huffman Require Export AuxLib.
From Huffman Require Export Code.
From Huffman Require Export Build.
From Huffman Require Export ISort.
Expand Down
2 changes: 1 addition & 1 deletion theories/Permutation.v
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Initial author: [email protected] (2003)
*)

From Huffman Require Export Aux.
From Huffman Require Export AuxLib.

Section permutation.
Variable A : Type.
Expand Down
2 changes: 1 addition & 1 deletion theories/UniqueKey.v
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Initial author: [email protected] (2003)
*)

From Huffman Require Export Aux.
From Huffman Require Export AuxLib.
From Huffman Require Export Permutation.
From Huffman Require Export UList.

Expand Down
1 change: 0 additions & 1 deletion theories/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
(name Huffman)
(public_name coq-huffman.Huffman)
(synopsis "Coq proof of the correctness of the Huffman coding algorithm")
(libraries coq.plugins.extraction)
(modules :standard))

0 comments on commit 806e103

Please sign in to comment.