Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure TopologicalEntropy is imported #54

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions BET.lean
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
-- This module serves as the root of the `BET` library.
-- Import modules here that should be built as part of the library.
import «BET».Birkhoff
import «BET».Minimal
import «BET».Topological
import BET.Birkhoff
import BET.Minimal
import BET.Topological

import BET.TopologicalEntropy.DynamicalCover
import BET.TopologicalEntropy.DynamicalNet
import BET.TopologicalEntropy.DynamicalUniformity
import BET.TopologicalEntropy.InvariantSubset
import BET.TopologicalEntropy.Systems.Morphism
import BET.TopologicalEntropy.Systems.Product
import BET.TopologicalEntropy.Systems.Shift
import BET.TopologicalEntropy.Systems.Subset
import BET.TopologicalEntropy.Systems.Union
1 change: 1 addition & 0 deletions BET/TopologicalEntropy/DynamicalCover.lean
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ theorem finite_mincard_iff (T : X → X) (F : Set X) (U : Set (X × X)) (n : ℕ
simp only [Set.mem_image, Set.mem_setOf_eq] at key
simp only [ENat.some_eq_coe, Nat.cast_inj]
exact key
sorry
· rintro ⟨s, ⟨_, s_mincard⟩⟩
rw [← s_mincard]
exact WithTop.coe_lt_top s.card
Expand Down