The directoryDependency
linter #
The directoryDependency
linter detects imports between directories that are supposed to be
independent. By specifying that one directory does not import from another, we can improve the
modularity of Mathlib.
Find the longest prefix of n
such that f
returns some
(or return none
otherwise).
Equations
- Lean.Name.findPrefix f Lean.Name.anonymous = (f Lean.Name.anonymous <|> none)
- Lean.Name.findPrefix f (n'.str str) = (f (n'.str str) <|> Lean.Name.findPrefix f n')
- Lean.Name.findPrefix f (n'.num i) = (f (n'.num i) <|> Lean.Name.findPrefix f n')
Instances For
Collect all prefixes of names in ns
into a single NameSet
.
Equations
- Lean.Name.collectPrefixes ns = Array.foldl (fun (ns : Lean.NameSet) (n : Lean.Name) => Lean.RBTree.union ns n.prefixes) ∅ ns
Instances For
Find a name in ns
that starts with prefix p
.
Equations
- p.prefixToName ns = Array.find? p.isPrefixOf ns
Instances For
Find the dependency chain, starting at a module that imports imported
, and ends with the
current module.
The path only contains the intermediate steps: it excludes imported
and the current module.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The directoryDependency
linter detects detects imports between directories that are supposed to be
independent. If this is the case, it emits a warning.
NamePrefixRel
is a datatype for storing relations between name prefixes.
That is, R : NamePrefixRel
is supposed to answer given names (n₁, n₂)
whether there are any
prefixes n₁'
of n₁
and n₂'
of n₂
such that n₁' R n₂'
.
The current implementation is a NameMap
of NameSet
s, testing each prefix of n₁
and n₂
in
turn. This can probably be optimized.
Instances For
Make all names with prefix n₁
related to names with prefix n₂
.
Equations
- r.insert n₁ n₂ = match Lean.NameMap.find? r n₁ with | some ns => Lean.NameMap.insert r n₁ (ns.insert n₂) | none => Lean.NameMap.insert r n₁ (∅.insert n₂)
Instances For
Convert an array of prefix pairs to a NamePrefixRel
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Get a prefix of n₁
that is related to a prefix of n₂
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Get a prefix of n₁
that is related to any prefix of the names in ns
; return the prefixes.
This should be more efficient than iterating over all names in ns
and calling find
,
since it doesn't need to worry about overlapping prefixes.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Is a prefix of n₁
related to a prefix of n₂
?
Instances For
forbiddenImportDirs
relates module prefixes, specifying that modules with the first prefix
should not import modules with the second prefix (except if specifically allowed in
overrideAllowedImportDirs
).
For example, (`Mathlib.Algebra.Notation, `Mathlib.Algebra)
is in forbiddenImportDirs
and
(`Mathlib.Algebra.Notation, `Mathlib.Algebra.Notation)
is in overrideAllowedImportDirs
because modules in Mathlib.Algebra.Notation
cannot import modules in Mathlib.Algebra
that are
outside Mathlib.Algebra.Notation
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
overrideAllowedImportDirs
relates module prefixes, specifying that modules with the first
prefix are allowed to import modules with the second prefix, even if disallowed in
forbiddenImportDirs
.
For example, (`Mathlib.Algebra.Notation, `Mathlib.Algebra)
is in forbiddenImportDirs
and
(`Mathlib.Algebra.Notation, `Mathlib.Algebra.Notation)
is in overrideAllowedImportDirs
because modules in Mathlib.Algebra.Notation
cannot import modules in Mathlib.Algebra
that are
outside Mathlib.Algebra.Notation
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The directoryDependency
linter detects detects imports between directories that are supposed to be
independent. If this is the case, it emits a warning.
Equations
- One or more equations did not get rendered due to their size.