aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/algebra/polyXY.v
diff options
context:
space:
mode:
authorGeorges Gonthier2019-04-28 11:31:11 +0200
committerGitHub2019-04-28 11:31:11 +0200
commit8e27a1dd704c8f7a34de29d65337eb67254a1741 (patch)
tree240ce34774221645650404da1337e94c5e3f63b3 /mathcomp/algebra/polyXY.v
parentdec1f90d13c44016ea53da360e9692fd768bc24b (diff)
parent22c182b681c2852afa13efc2bc1d6d083646f061 (diff)
Merge pull request #336 from CohenCyril/clean_require
Cleaning Require and Require Imports
Diffstat (limited to 'mathcomp/algebra/polyXY.v')
-rw-r--r--mathcomp/algebra/polyXY.v11
1 files changed, 4 insertions, 7 deletions
diff --git a/mathcomp/algebra/polyXY.v b/mathcomp/algebra/polyXY.v
index 82a4afb..e91b8be 100644
--- a/mathcomp/algebra/polyXY.v
+++ b/mathcomp/algebra/polyXY.v
@@ -1,12 +1,9 @@
(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
(* Distributed under the terms of CeCILL-B. *)
-Require Import mathcomp.ssreflect.ssreflect.
-From mathcomp
-Require Import ssrfun ssrbool choice eqtype ssrnat seq div fintype.
-From mathcomp
-Require Import tuple finfun bigop fingroup perm ssralg zmodp matrix mxalgebra.
-From mathcomp
-Require Import poly polydiv mxpoly binomial.
+From mathcomp Require Import ssreflect ssrfun ssrbool eqtype choice ssrnat seq.
+From mathcomp Require Import fintype tuple finfun bigop fingroup perm div.
+From mathcomp Require Import ssralg zmodp matrix mxalgebra.
+From mathcomp Require Import poly polydiv mxpoly binomial.
(******************************************************************************)
(* This file provides additional primitives and theory for bivariate *)