Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit d010717

Browse files
committed
chore(linear_algebra): flatten hierarchy, move algebra/linear_algebra to linear_algebra
1 parent d78c8ea commit d010717

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

algebra/linear_algebra/default.lean

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.

linear_algebra/default.lean

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import linear_algebra.basic

algebra/linear_algebra/dimension.lean renamed to linear_algebra/dimension.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Author: Mario Carneiro
55
66
Dimension of modules and vector spaces.
77
-/
8-
import algebra.linear_algebra.basic set_theory.cardinal
8+
import linear_algebra.basic set_theory.cardinal
99
noncomputable theory
1010

1111
local attribute [instance] classical.prop_decidable

algebra/linear_algebra/linear_map_module.lean renamed to linear_algebra/linear_map_module.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Authors: Johannes Hölzl, Kenny Lau
55
66
Type of linear functions
77
-/
8-
import algebra.linear_algebra.basic
9-
algebra.linear_algebra.prod_module
10-
algebra.linear_algebra.quotient_module
11-
algebra.linear_algebra.subtype_module
8+
import linear_algebra.basic
9+
linear_algebra.prod_module
10+
linear_algebra.quotient_module
11+
linear_algebra.subtype_module
1212
noncomputable theory
1313
local attribute [instance] classical.prop_decidable
1414

algebra/linear_algebra/multivariate_polynomial.lean renamed to linear_algebra/multivariate_polynomial.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Authors: Johannes Hölzl
55
66
Multivariate Polynomial
77
-/
8-
import data.finsupp algebra.linear_algebra.basic
8+
import data.finsupp linear_algebra.basic
99
noncomputable theory
1010

1111
open classical set function finsupp lattice

algebra/linear_algebra/prod_module.lean renamed to linear_algebra/prod_module.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Author: Johannes Hölzl
66
Semigroup, monoid, group and module structures on product spaces.
77
-/
88

9-
import data.prod algebra.linear_algebra.basic
9+
import data.prod linear_algebra.basic
1010
open set function
1111

1212
universes u v w x

algebra/linear_algebra/quotient_module.lean renamed to linear_algebra/quotient_module.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Author: Johannes Hölzl
66
Quotient construction on modules
77
-/
88

9-
import algebra.linear_algebra.basic
9+
import linear_algebra.basic
1010

1111
namespace is_submodule
1212

algebra/linear_algebra/subtype_module.lean renamed to linear_algebra/subtype_module.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Authors: Johannes Hölzl, Kenny Lau
55
66
Subtype construction of sub modules.
77
-/
8-
import algebra.linear_algebra.basic
8+
import linear_algebra.basic
99

1010
universes u v w
1111
variables {α : Type u} {β : Type v} {γ : Type w}

0 commit comments

Comments
 (0)