aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/solvable/cyclic.v
diff options
context:
space:
mode:
authorAnton Trunov2018-11-20 17:51:11 +0100
committerAnton Trunov2018-11-21 16:23:02 +0100
commitf049e51c39077a025907ea87c08178dad1841801 (patch)
tree2ffb41f5afa11a147989c8efcc1dcb295ae2ed2b /mathcomp/solvable/cyclic.v
parent967088a6f87405a93ce21971392c58996df8c99f (diff)
Merge Arguments and Prenex Implicits
See the discussion here: https://github.com/math-comp/math-comp/pull/242#discussion_r233778114
Diffstat (limited to 'mathcomp/solvable/cyclic.v')
-rw-r--r--mathcomp/solvable/cyclic.v15
1 files changed, 7 insertions, 8 deletions
diff --git a/mathcomp/solvable/cyclic.v b/mathcomp/solvable/cyclic.v
index bed8c5c..046f4a2 100644
--- a/mathcomp/solvable/cyclic.v
+++ b/mathcomp/solvable/cyclic.v
@@ -289,11 +289,11 @@ Proof. by rewrite /order => /(<[a]> =P _)->. Qed.
End Cyclic.
-Arguments cyclic _ _%g.
-Arguments generator _ _%g _%g.
-Arguments expg_invn _ _%g _%N.
-Arguments cyclicP [gT A].
-Prenex Implicits cyclic Zpm generator expg_invn.
+Arguments cyclic {_} _%g.
+Arguments generator {_}_%g _%g.
+Arguments expg_invn {_} _%g _%N.
+Arguments cyclicP {gT A}.
+Prenex Implicits cyclic Zpm.
(* Euler's theorem *)
Theorem Euler_exp_totient a n : coprime a n -> a ^ totient n = 1 %[mod n].
@@ -556,9 +556,8 @@ Qed.
End Metacyclic.
-Arguments metacyclic _ _%g.
-Prenex Implicits metacyclic.
-Arguments metacyclicP [gT A].
+Arguments metacyclic {_} _%g.
+Arguments metacyclicP {gT A}.
(* Automorphisms of cyclic groups. *)
Section CyclicAutomorphism.