Skip to content

Commit b271a67

Browse files
committed
test
1 parent 9c4cf1a commit b271a67

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

LeanBridge.lean

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

LeanBridge/Example.lean

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import Mathlib
2+
3+
4+
--this is just a test file to check that the import works
5+
variable {α β F : Type*} [NormedAddCommGroup F] [CompleteSpace F] {u : α → ℝ}
6+
7+
theorem HasSumUniformlyOn_of_bounded {f : α → β → F} (hu : Summable u) {s : Set β}
8+
(hfu : ∀ n x, x ∈ s → ‖f n x‖ ≤ u n) : HasSumUniformlyOn f (fun x => ∑' n, f n x) {s} := by
9+
simp [hasSumUniformlyOn_iff_tendstoUniformlyOn, tendstoUniformlyOn_tsum hu hfu]

LeanBridge/Mathlib/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Mathlib
2+
3+
This folder contains `.lean` files with declarations missing from the current version of Mathlib.

0 commit comments

Comments
 (0)