Skip to content

Commit

Permalink
More refactoring
Browse files Browse the repository at this point in the history
Signed-off-by: Sky Wilshaw <[email protected]>
  • Loading branch information
zeramorphic committed Dec 5, 2024
1 parent 62ba28f commit 39c33b4
Show file tree
Hide file tree
Showing 19 changed files with 29 additions and 29 deletions.
20 changes: 10 additions & 10 deletions ConNF.lean
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,8 @@ import ConNF.Base.BasePerm
import ConNF.Base.Litter
import ConNF.Base.NearLitter
import ConNF.Base.Params
import ConNF.Base.Position
import ConNF.Base.Small
import ConNF.Base.TypeIndex
import ConNF.Coherent.CoherentData
import ConNF.Coherent.Enumeration
import ConNF.Coherent.Fuzz
import ConNF.Coherent.ModelData
import ConNF.Coherent.PathEnumeration
import ConNF.Coherent.Support
import ConNF.Construction.Code
import ConNF.Construction.NewModelData
import ConNF.Counting.BaseCoding
Expand All @@ -39,9 +32,6 @@ import ConNF.FOA.StrAction
import ConNF.FOA.StrActionFOA
import ConNF.FOA.StrApprox
import ConNF.FOA.StrApproxFOA
import ConNF.Levels.BasePositions
import ConNF.Levels.Deny
import ConNF.Levels.Level
import ConNF.Levels.Path
import ConNF.Levels.StrPerm
import ConNF.Levels.StrSet
Expand All @@ -55,6 +45,16 @@ import ConNF.Model.RaiseStrong
import ConNF.Model.Result
import ConNF.Model.RunInduction
import ConNF.Model.TTT
import ConNF.ModelData.CoherentData
import ConNF.ModelData.Enumeration
import ConNF.ModelData.Fuzz
import ConNF.ModelData.Level
import ConNF.ModelData.ModelData
import ConNF.ModelData.PathEnumeration
import ConNF.ModelData.Support
import ConNF.Position.BasePositions
import ConNF.Position.Deny
import ConNF.Position.Position
import ConNF.Strong.SMulSpec
import ConNF.Strong.Spec
import ConNF.Strong.SpecSame
Expand Down
2 changes: 1 addition & 1 deletion ConNF/Construction/Code.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.CoherentData
import ConNF.ModelData.CoherentData

/-!
# Codes
Expand Down
2 changes: 1 addition & 1 deletion ConNF/Counting/CodingFunction.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.CoherentData
import ConNF.ModelData.CoherentData

/-!
# Coding functions
Expand Down
2 changes: 1 addition & 1 deletion ConNF/Counting/Twist.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.ModelData
import ConNF.ModelData.ModelData

/-!
# Twisting sets
Expand Down
2 changes: 1 addition & 1 deletion ConNF/FOA/BaseApprox.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.Support
import ConNF.ModelData.Support
import ConNF.FOA.Coherent

/-!
Expand Down
2 changes: 1 addition & 1 deletion ConNF/FOA/Coherent.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.CoherentData
import ConNF.ModelData.CoherentData
import ConNF.FOA.Inflexible

/-!
Expand Down
2 changes: 1 addition & 1 deletion ConNF/FOA/Inflexible.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.CoherentData
import ConNF.ModelData.CoherentData

/-!
# New file
Expand Down
2 changes: 1 addition & 1 deletion ConNF/FOA/StrApprox.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.CoherentData
import ConNF.ModelData.CoherentData
import ConNF.FOA.BaseApprox

/-!
Expand Down
2 changes: 1 addition & 1 deletion ConNF/Model/InductionStatement.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.CoherentData
import ConNF.ModelData.CoherentData
import ConNF.Construction.Code

/-!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ConNF.Coherent.Fuzz
import ConNF.Levels.Level
import ConNF.Coherent.ModelData
import ConNF.ModelData.Fuzz
import ConNF.ModelData.Level
import ConNF.ModelData.ModelData

/-!
# Coherent data
Expand All @@ -9,7 +9,7 @@ In this file, we define the type of coherent data below a particular proper type
## Main declarations
* `ConNF.CoherentData`: Coherent data below a given level `α`.
* `ConNF.ModelDataData`: Coherent data below a given level `α`.
-/

noncomputable section
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions ConNF/Coherent/Fuzz.lean → ConNF/ModelData/Fuzz.lean
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ConNF.Levels.BasePositions
import ConNF.Coherent.ModelData
import ConNF.Position.BasePositions
import ConNF.ModelData.ModelData

/-!
# The `fuzz` map
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ConNF.Levels.StrSet
import ConNF.Coherent.Support
import ConNF.ModelData.Support

/-!
# Model data
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.Enumeration
import ConNF.ModelData.Enumeration
import ConNF.Levels.StrPerm

/-!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Coherent.PathEnumeration
import ConNF.ModelData.PathEnumeration

/-!
# Supports
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Levels.Deny
import ConNF.Position.Deny
import ConNF.Base.NearLitter

/-!
Expand Down
2 changes: 1 addition & 1 deletion ConNF/Levels/Deny.lean → ConNF/Position/Deny.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConNF.Base.Position
import ConNF.Position.Position

/-!
# Injective functions from denied sets
Expand Down
File renamed without changes.

0 comments on commit 39c33b4

Please sign in to comment.