aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/solvable
diff options
context:
space:
mode:
authorCyril Cohen2020-11-19 21:37:27 +0100
committerGitHub2020-11-19 21:37:27 +0100
commit0dbefe01e54a467b7932a514355f0435b4cfb978 (patch)
tree20f7b58ca7d379faf4cc4ddeb435744e7d87a3a6 /mathcomp/solvable
parent75da4dbbf2fa6ca6ee150d272d3a793bff63c931 (diff)
parentc83609826d97afda6b11b227207f461cf077a0d5 (diff)
Merge pull request #656 from affeldt-aist/declare_scopes
add declare scopes
Diffstat (limited to 'mathcomp/solvable')
-rw-r--r--mathcomp/solvable/Make2
-rw-r--r--mathcomp/solvable/gfunctor.v6
-rw-r--r--mathcomp/solvable/gseries.v2
-rw-r--r--mathcomp/solvable/jordanholder.v7
4 files changed, 11 insertions, 6 deletions
diff --git a/mathcomp/solvable/Make b/mathcomp/solvable/Make
index 6101659..fd00057 100644
--- a/mathcomp/solvable/Make
+++ b/mathcomp/solvable/Make
@@ -26,4 +26,4 @@ sylow.v
-arg -w -arg -notation-overridden
-arg -w -arg -duplicate-clear
-arg -w -arg -ambiguous-paths
--arg -w -arg -undeclared-scope \ No newline at end of file
+-arg -w -arg +undeclared-scope \ No newline at end of file
diff --git a/mathcomp/solvable/gfunctor.v b/mathcomp/solvable/gfunctor.v
index 3417d84..2fcb8ac 100644
--- a/mathcomp/solvable/gfunctor.v
+++ b/mathcomp/solvable/gfunctor.v
@@ -81,12 +81,14 @@ From mathcomp Require Import quotient gproduct.
(* structures when F1 is monotonic or hereditary, respectively. *)
(******************************************************************************)
-Import GroupScope.
-
Set Implicit Arguments.
Unset Strict Implicit.
Unset Printing Implicit Defensive.
+Declare Scope gFun_scope.
+
+Import GroupScope.
+
Delimit Scope gFun_scope with gF.
Module GFunctor.
diff --git a/mathcomp/solvable/gseries.v b/mathcomp/solvable/gseries.v
index 73188a6..43ed7db 100644
--- a/mathcomp/solvable/gseries.v
+++ b/mathcomp/solvable/gseries.v
@@ -32,6 +32,8 @@ Set Implicit Arguments.
Unset Strict Implicit.
Unset Printing Implicit Defensive.
+Declare Scope group_rel_scope.
+
Import GroupScope.
Section GroupDefs.
diff --git a/mathcomp/solvable/jordanholder.v b/mathcomp/solvable/jordanholder.v
index cd121cb..075c209 100644
--- a/mathcomp/solvable/jordanholder.v
+++ b/mathcomp/solvable/jordanholder.v
@@ -49,13 +49,14 @@ From mathcomp Require Import automorphism quotient action gseries.
(* by Assia Mahboubi. *)
(******************************************************************************)
-
-Import GroupScope.
-
Set Implicit Arguments.
Unset Strict Implicit.
Unset Printing Implicit Defensive.
+Declare Scope section_scope.
+
+Import GroupScope.
+
Inductive section (gT : finGroupType) := GSection of {group gT} * {group gT}.
Delimit Scope section_scope with sec.