From 808b681cf102852b0920683685bde10d008fc613 Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Thu, 5 Jan 2017 19:39:47 +0100 Subject: [PATCH] more restrictive Proof Using hints in (most files of the) prelude --- theories/base.v | 2 +- theories/bset.v | 2 +- theories/coPset.v | 2 +- theories/countable.v | 2 +- theories/finite.v | 6 +++--- theories/functions.v | 2 +- theories/gmap.v | 2 +- theories/gmultiset.v | 2 +- theories/hashset.v | 2 +- theories/hlist.v | 2 +- theories/lexico.v | 2 +- theories/listset.v | 2 +- theories/listset_nodup.v | 2 +- theories/natmap.v | 2 +- theories/nmap.v | 2 +- theories/numbers.v | 2 +- theories/option.v | 2 +- theories/orders.v | 2 +- theories/pmap.v | 2 +- theories/pretty.v | 2 +- theories/proof_irrel.v | 2 +- theories/relations.v | 2 +- theories/set.v | 2 +- theories/sorting.v | 2 +- theories/streams.v | 2 +- theories/stringmap.v | 2 +- theories/strings.v | 2 +- theories/tactics.v | 2 +- theories/vector.v | 2 +- theories/zmap.v | 2 +- 30 files changed, 32 insertions(+), 32 deletions(-) diff --git a/theories/base.v b/theories/base.v index 859c6f00..92606a94 100644 --- a/theories/base.v +++ b/theories/base.v @@ -9,7 +9,7 @@ Global Set Automatic Coercions Import. Global Set Asymmetric Patterns. Global Unset Transparent Obligations. From Coq Require Export Morphisms RelationClasses List Bool Utf8 Setoid. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Export ListNotations. From Coq.Program Require Export Basics Syntax. Obligation Tactic := idtac. diff --git a/theories/bset.v b/theories/bset.v index 91501e33..8f9e369b 100644 --- a/theories/bset.v +++ b/theories/bset.v @@ -2,7 +2,7 @@ (* This file is distributed under the terms of the BSD license. *) (** This file implements bsets as functions into Prop. *) From stdpp Require Export prelude. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Record bset (A : Type) : Type := mkBSet { bset_car : A → bool }. Arguments mkBSet {_} _. diff --git a/theories/coPset.v b/theories/coPset.v index 49e32334..a36339f4 100644 --- a/theories/coPset.v +++ b/theories/coPset.v @@ -13,7 +13,7 @@ Since [positive]s are bitstrings, we encode [coPset]s as trees that correspond to the decision function that map bitstrings to bools. *) From stdpp Require Export collections. From stdpp Require Import pmap gmap mapset. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Local Open Scope positive_scope. (** * The tree data structure *) diff --git a/theories/countable.v b/theories/countable.v index 3ac06848..c4e15373 100644 --- a/theories/countable.v +++ b/theories/countable.v @@ -1,7 +1,7 @@ (* Copyright (c) 2012-2015, Robbert Krebbers. *) (* This file is distributed under the terms of the BSD license. *) From stdpp Require Export list. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Local Open Scope positive. Class Countable A `{EqDecision A} := { diff --git a/theories/finite.v b/theories/finite.v index 9a4d20a4..793435cb 100644 --- a/theories/finite.v +++ b/theories/finite.v @@ -1,7 +1,7 @@ (* Copyright (c) 2012-2015, Robbert Krebbers. *) (* This file is distributed under the terms of the BSD license. *) From stdpp Require Export countable vector. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Class Finite A `{EqDecision A} := { enum : list A; @@ -181,12 +181,12 @@ Section forall_exists. Context `{∀ x, Decision (P x)}. Global Instance forall_dec: Decision (∀ x, P x). - Proof. + Proof using Type*. refine (cast_if (decide (Forall P (enum A)))); abstract by rewrite <-Forall_finite. Defined. Global Instance exists_dec: Decision (∃ x, P x). - Proof. + Proof using Type*. refine (cast_if (decide (Exists P (enum A)))); abstract by rewrite <-Exists_finite. Defined. diff --git a/theories/functions.v b/theories/functions.v index 4c37187d..868a430b 100644 --- a/theories/functions.v +++ b/theories/functions.v @@ -1,5 +1,5 @@ From stdpp Require Export base tactics. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Section definitions. Context {A T : Type} `{EqDecision A}. diff --git a/theories/gmap.v b/theories/gmap.v index a1bf157f..7787305d 100644 --- a/theories/gmap.v +++ b/theories/gmap.v @@ -4,7 +4,7 @@ type. The implementation is based on [Pmap]s, radix-2 search trees. *) From stdpp Require Export countable fin_maps fin_map_dom. From stdpp Require Import pmap mapset set. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". (** * The data structure *) (** We pack a [Pmap] together with a proof that ensures that all keys correspond diff --git a/theories/gmultiset.v b/theories/gmultiset.v index 7f1f83eb..3918fd9b 100644 --- a/theories/gmultiset.v +++ b/theories/gmultiset.v @@ -1,7 +1,7 @@ (* Copyright (c) 2012-2016, Robbert Krebbers. *) (* This file is distributed under the terms of the BSD license. *) From stdpp Require Import gmap. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Record gmultiset A `{Countable A} := GMultiSet { gmultiset_car : gmap A nat }. Arguments GMultiSet {_ _ _} _. diff --git a/theories/hashset.v b/theories/hashset.v index ffed2bd1..215479cc 100644 --- a/theories/hashset.v +++ b/theories/hashset.v @@ -5,7 +5,7 @@ using radix-2 search trees. Each hash bucket is thus indexed using an binary integer of type [Z], and contains an unordered list without duplicates. *) From stdpp Require Export fin_maps listset. From stdpp Require Import zmap. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Record hashset {A} (hash : A → Z) := Hashset { hashset_car : Zmap (list A); diff --git a/theories/hlist.v b/theories/hlist.v index 39ad9805..7c0dff7f 100644 --- a/theories/hlist.v +++ b/theories/hlist.v @@ -1,5 +1,5 @@ From stdpp Require Import tactics. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Local Set Universe Polymorphism. (* Not using [list Type] in order to avoid universe inconsistencies *) diff --git a/theories/lexico.v b/theories/lexico.v index f5402ebd..7ab91c2b 100644 --- a/theories/lexico.v +++ b/theories/lexico.v @@ -3,7 +3,7 @@ (** This files defines a lexicographic order on various common data structures and proves that it is a partial order having a strong variant of trichotomy. *) From stdpp Require Import numbers. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Notation cast_trichotomy T := match T with diff --git a/theories/listset.v b/theories/listset.v index 8966cc2e..f86a0d83 100644 --- a/theories/listset.v +++ b/theories/listset.v @@ -3,7 +3,7 @@ (** This file implements finite set as unordered lists without duplicates removed. This implementation forms a monad. *) From stdpp Require Export collections list. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Record listset A := Listset { listset_car: list A }. Arguments listset_car {_} _. diff --git a/theories/listset_nodup.v b/theories/listset_nodup.v index e3b76d51..5f62b6ff 100644 --- a/theories/listset_nodup.v +++ b/theories/listset_nodup.v @@ -4,7 +4,7 @@ Although this implementation is slow, it is very useful as decidable equality is the only constraint on the carrier set. *) From stdpp Require Export collections list. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Record listset_nodup A := ListsetNoDup { listset_nodup_car : list A; listset_nodup_prf : NoDup listset_nodup_car diff --git a/theories/natmap.v b/theories/natmap.v index d109590b..31e7c088 100644 --- a/theories/natmap.v +++ b/theories/natmap.v @@ -4,7 +4,7 @@ over Coq's data type of unary natural numbers [nat]. The implementation equips a list with a proof of canonicity. *) From stdpp Require Import fin_maps mapset. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Notation natmap_raw A := (list (option A)). Definition natmap_wf {A} (l : natmap_raw A) := diff --git a/theories/nmap.v b/theories/nmap.v index 12645efb..a37a0817 100644 --- a/theories/nmap.v +++ b/theories/nmap.v @@ -4,7 +4,7 @@ maps whose keys range over Coq's data type of binary naturals [N]. *) From stdpp Require Import pmap mapset. From stdpp Require Export prelude fin_maps. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Local Open Scope N_scope. diff --git a/theories/numbers.v b/theories/numbers.v index 034a4ca1..ad31094f 100644 --- a/theories/numbers.v +++ b/theories/numbers.v @@ -6,7 +6,7 @@ notations. *) From Coq Require Export EqdepFacts PArith NArith ZArith NPeano. From Coq Require Import QArith Qcanon. From stdpp Require Export base decidable option. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Open Scope nat_scope. Coercion Z.of_nat : nat >-> Z. diff --git a/theories/option.v b/theories/option.v index 53fe1bf5..610fe2c6 100644 --- a/theories/option.v +++ b/theories/option.v @@ -3,7 +3,7 @@ (** This file collects general purpose definitions and theorems on the option data type that are not in the Coq standard library. *) From stdpp Require Export tactics. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Inductive option_reflect {A} (P : A → Prop) (Q : Prop) : option A → Type := | ReflectSome x : P x → option_reflect P Q (Some x) diff --git a/theories/orders.v b/theories/orders.v index bc301900..f8897d0b 100644 --- a/theories/orders.v +++ b/theories/orders.v @@ -3,7 +3,7 @@ (** Properties about arbitrary pre-, partial, and total orders. We do not use the relation [⊆] because we often have multiple orders on the same structure *) From stdpp Require Export tactics. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Section orders. Context {A} {R : relation A}. diff --git a/theories/pmap.v b/theories/pmap.v index a6966f39..ccb29e9a 100644 --- a/theories/pmap.v +++ b/theories/pmap.v @@ -10,7 +10,7 @@ Leibniz equality to become extensional. *) From Coq Require Import PArith. From stdpp Require Import mapset countable. From stdpp Require Export fin_maps. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Local Open Scope positive_scope. Local Hint Extern 0 (@eq positive _ _) => congruence. diff --git a/theories/pretty.v b/theories/pretty.v index afd2b689..febf1048 100644 --- a/theories/pretty.v +++ b/theories/pretty.v @@ -3,7 +3,7 @@ From stdpp Require Export strings. From stdpp Require Import relations. From Coq Require Import Ascii. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Class Pretty A := pretty : A → string. Definition pretty_N_char (x : N) : ascii := diff --git a/theories/proof_irrel.v b/theories/proof_irrel.v index 4d9c6d7d..f4fc9738 100644 --- a/theories/proof_irrel.v +++ b/theories/proof_irrel.v @@ -2,7 +2,7 @@ (* This file is distributed under the terms of the BSD license. *) (** This file collects facts on proof irrelevant types/propositions. *) From stdpp Require Export base. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Hint Extern 200 (ProofIrrel _) => progress (lazy beta) : typeclass_instances. diff --git a/theories/relations.v b/theories/relations.v index 3152cc78..84f2ff9c 100644 --- a/theories/relations.v +++ b/theories/relations.v @@ -6,7 +6,7 @@ small step semantics. This file defines a hint database [ars] containing some theorems on abstract rewriting systems. *) From Coq Require Import Wf_nat. From stdpp Require Export tactics base. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". (** * Definitions *) Section definitions. diff --git a/theories/set.v b/theories/set.v index 27a97975..0e5b5a96 100644 --- a/theories/set.v +++ b/theories/set.v @@ -2,7 +2,7 @@ (* This file is distributed under the terms of the BSD license. *) (** This file implements sets as functions into Prop. *) From stdpp Require Export collections. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Record set (A : Type) : Type := mkSet { set_car : A → Prop }. Add Printing Constructor set. diff --git a/theories/sorting.v b/theories/sorting.v index 46d7eea5..da100802 100644 --- a/theories/sorting.v +++ b/theories/sorting.v @@ -4,7 +4,7 @@ standard library, but without using the module system. *) From Coq Require Export Sorted. From stdpp Require Export orders list. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Section merge_sort. Context {A} (R : relation A) `{∀ x y, Decision (R x y)}. diff --git a/theories/streams.v b/theories/streams.v index 725a5915..4b6fbe54 100644 --- a/theories/streams.v +++ b/theories/streams.v @@ -1,7 +1,7 @@ (* Copyright (c) 2012-2015, Robbert Krebbers. *) (* This file is distributed under the terms of the BSD license. *) From stdpp Require Export tactics. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". CoInductive stream (A : Type) : Type := scons : A → stream A → stream A. Arguments scons {_} _ _. diff --git a/theories/stringmap.v b/theories/stringmap.v index 9de316ca..b5f13b21 100644 --- a/theories/stringmap.v +++ b/theories/stringmap.v @@ -6,7 +6,7 @@ search trees (uncompressed Patricia trees) as implemented in the file [pmap] and guarantees logarithmic-time operations. *) From stdpp Require Export fin_maps pretty. From stdpp Require Import gmap. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Notation stringmap := (gmap string). Notation stringset := (gset string). diff --git a/theories/strings.v b/theories/strings.v index 93718899..5e00a2ad 100644 --- a/theories/strings.v +++ b/theories/strings.v @@ -4,7 +4,7 @@ From Coq Require Import Ascii. From Coq Require Export String. From stdpp Require Export list. From stdpp Require Import countable. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". (* To avoid randomly ending up with String.length because this module is imported hereditarily somewhere. *) diff --git a/theories/tactics.v b/theories/tactics.v index f104f381..c6ca7aa5 100644 --- a/theories/tactics.v +++ b/theories/tactics.v @@ -5,7 +5,7 @@ the development. *) From Coq Require Import Omega. From Coq Require Export Lia. From stdpp Require Export decidable. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Lemma f_equal_dep {A B} (f g : ∀ x : A, B x) x : f = g → f x = g x. Proof. intros ->; reflexivity. Qed. diff --git a/theories/vector.v b/theories/vector.v index b0d6d326..ef6d2d4b 100644 --- a/theories/vector.v +++ b/theories/vector.v @@ -6,7 +6,7 @@ definitions from the standard library, but renames or changes their notations, so that it becomes more consistent with the naming conventions in this development. *) From stdpp Require Export list. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Open Scope vector_scope. (** * The fin type *) diff --git a/theories/zmap.v b/theories/zmap.v index 32689e58..227a420d 100644 --- a/theories/zmap.v +++ b/theories/zmap.v @@ -4,7 +4,7 @@ maps whose keys range over Coq's data type of binary naturals [Z]. *) From stdpp Require Import pmap mapset. From stdpp Require Export prelude fin_maps. -Set Default Proof Using "Type*". +Set Default Proof Using "Type". Local Open Scope Z_scope. Record Zmap (A : Type) : Type := -- GitLab