aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/algebra/matrix.v
diff options
context:
space:
mode:
authorCyril Cohen2019-04-26 14:14:15 +0200
committerCyril Cohen2019-04-26 15:08:48 +0200
commit22c182b681c2852afa13efc2bc1d6d083646f061 (patch)
tree240ce34774221645650404da1337e94c5e3f63b3 /mathcomp/algebra/matrix.v
parentdec1f90d13c44016ea53da360e9692fd768bc24b (diff)
Cleaning Require and Require Imports
Diffstat (limited to 'mathcomp/algebra/matrix.v')
-rw-r--r--mathcomp/algebra/matrix.v10
1 files changed, 3 insertions, 7 deletions
diff --git a/mathcomp/algebra/matrix.v b/mathcomp/algebra/matrix.v
index 2580741..d3142d6 100644
--- a/mathcomp/algebra/matrix.v
+++ b/mathcomp/algebra/matrix.v
@@ -1,12 +1,8 @@
(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
-Require Import mathcomp.ssreflect.ssreflect.
-From mathcomp
-Require Import ssrbool ssrfun eqtype ssrnat seq div choice fintype.
-From mathcomp
-Require Import finfun bigop prime binomial ssralg finset fingroup finalg.
-From mathcomp
-Require Import perm zmodp countalg.
+From mathcomp Require Import ssreflect ssrbool ssrfun eqtype ssrnat seq choice.
+From mathcomp Require Import fintype finfun bigop finset fingroup perm.
+From mathcomp Require Import div prime binomial ssralg finalg zmodp countalg.
(******************************************************************************)
(* Basic concrete linear algebra : definition of type for matrices, and all *)