diff options
| author | Reynald Affeldt | 2020-11-19 19:18:39 +0900 |
|---|---|---|
| committer | Reynald Affeldt | 2020-11-19 20:39:55 +0900 |
| commit | c83609826d97afda6b11b227207f461cf077a0d5 (patch) | |
| tree | 776f52f9fc5ac00e4eb28e23f65f7ffafbfd1824 /mathcomp/character | |
| parent | 0606b6bf22e258dc3b7cf440f10c108f785904b5 (diff) | |
add declare scopes
Diffstat (limited to 'mathcomp/character')
| -rw-r--r-- | mathcomp/character/Make | 2 | ||||
| -rw-r--r-- | mathcomp/character/classfun.v | 2 | ||||
| -rw-r--r-- | mathcomp/character/mxabelem.v | 2 | ||||
| -rw-r--r-- | mathcomp/character/mxrepresentation.v | 3 |
4 files changed, 8 insertions, 1 deletions
diff --git a/mathcomp/character/Make b/mathcomp/character/Make index deccc50..43790cd 100644 --- a/mathcomp/character/Make +++ b/mathcomp/character/Make @@ -14,4 +14,4 @@ vcharacter.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 diff --git a/mathcomp/character/classfun.v b/mathcomp/character/classfun.v index 356ff5c..ccfc37b 100644 --- a/mathcomp/character/classfun.v +++ b/mathcomp/character/classfun.v @@ -91,6 +91,8 @@ Set Implicit Arguments. Unset Strict Implicit. Unset Printing Implicit Defensive. +Declare Scope cfun_scope. + Import Order.TTheory GroupScope GRing.Theory Num.Theory. Local Open Scope ring_scope. Delimit Scope cfun_scope with CF. diff --git a/mathcomp/character/mxabelem.v b/mathcomp/character/mxabelem.v index 949ded3..8575d58 100644 --- a/mathcomp/character/mxabelem.v +++ b/mathcomp/character/mxabelem.v @@ -47,6 +47,8 @@ Set Implicit Arguments. Unset Strict Implicit. Unset Printing Implicit Defensive. +Declare Scope abelem_scope. + Import GroupScope GRing.Theory FinRing.Theory. Local Open Scope ring_scope. diff --git a/mathcomp/character/mxrepresentation.v b/mathcomp/character/mxrepresentation.v index e94e69f..6885ec7 100644 --- a/mathcomp/character/mxrepresentation.v +++ b/mathcomp/character/mxrepresentation.v @@ -282,6 +282,9 @@ Set Implicit Arguments. Unset Strict Implicit. Unset Printing Implicit Defensive. +Declare Scope irrType_scope. +Declare Scope group_ring_scope. + Import GroupScope GRing.Theory. Local Open Scope ring_scope. |
