Skip to content

Commit 20f5144

Browse files
committed
Merge branch 'main' of github.com:ImperialCollegeLondon/FLT
2 parents b4387f5 + 3b548ea commit 20f5144

14 files changed

+15
-1817
lines changed

.github/workflows/01-claim-issue.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
COMMENT_RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" -X POST \
8585
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
8686
-H "Content-Type: application/json" \
87-
-d '{"body": "This issue cannot be assigned to @${{ github.event.comment.user.login }} because it has not been added to the project board by the project maintainers.\n\nPlease consider discussing the issue on our [Zulip channel](https://leanprover.zulipchat.com/#narrow/stream/416277-FLT). To understand the contribution process, please read the [CONTRIBUTING guide](https://github.com/teorth/equational_theories/blob/main/CONTRIBUTING.md)."}' \
87+
-d '{"body": "This issue cannot be assigned to @${{ github.event.comment.user.login }} because it has not been added to the project board by the project maintainers.\n\nPlease consider discussing the issue on our [Zulip channel](https://leanprover.zulipchat.com/#narrow/stream/416277-FLT). To understand the contribution process, please read the [CONTRIBUTING guide](https://github.com/ImperialCollegeLondon/FLT/blob/main/CONTRIBUTING.md)."}' \
8888
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments)
8989
9090
if [ "$COMMENT_RESPONSE" -eq 201 ]; then
@@ -113,7 +113,7 @@ jobs:
113113
if [ "$CURRENT_STATUS_ID" != "$UNCLAIMED_TASKS_ID" ]; then
114114
echo "Issue is not classified as 'Unclaimed'. Posting comment."
115115
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
116-
-d '{"body": "This issue cannot be assigned to @${{ github.event.comment.user.login }} because it has not been classified as an \"Unclaimed Outstanding Task\" by the project maintainers.\n\nPlease consider discussing the issue on our [Zulip channel](https://leanprover.zulipchat.com/#narrow/stream/416277-FLT). To understand the contribution process, please read the [CONTRIBUTING guide](https://github.com/teorth/equational_theories/blob/main/CONTRIBUTING.md)."}' \
116+
-d '{"body": "This issue cannot be assigned to @${{ github.event.comment.user.login }} because it has not been classified as an \"Unclaimed Outstanding Task\" by the project maintainers.\n\nPlease consider discussing the issue on our [Zulip channel](https://leanprover.zulipchat.com/#narrow/stream/416277-FLT). To understand the contribution process, please read the [CONTRIBUTING guide](https://github.com/ImperialCollegeLondon/FLT/blob/main/CONTRIBUTING.md)."}' \
117117
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments
118118
exit 1
119119
fi

.github/workflows/push.yml

+2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ jobs:
103103

104104
- name: Bundle website
105105
working-directory: docs
106+
env:
107+
JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
106108
run: JEKYLL_ENV=production bundle exec jekyll build
107109

108110
- name: Upload docs & blueprint artifact

FLT/FLT_files.lean

-5
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@ import FLT.GaloisRepresentation.HardlyRamified
99
import FLT.GlobalLanglandsConjectures.GLnDefs
1010
import FLT.GlobalLanglandsConjectures.GLzero
1111
import FLT.GroupScheme.FiniteFlat
12-
import FLT.HIMExperiments.ContinuousSMul_topology
13-
import FLT.HIMExperiments.dual_topology
14-
import FLT.HIMExperiments.FGModuleTopology
1512
import FLT.HIMExperiments.flatness
16-
import FLT.HIMExperiments.module_topology
17-
import FLT.HIMExperiments.right_module_topology
1813
import FLT.Hard.Results
1914
import FLT.MathlibExperiments.Coalgebra.Monoid
2015
import FLT.MathlibExperiments.Coalgebra.Sweedler

FLT/ForMathlib/MiscLemmas.lean

-7
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,6 @@ theorem induced_continuous_add [AddCommMonoid A] [τA : TopologicalSpace A] [Con
8383
@ContinuousAdd B (TopologicalSpace.induced h τA) _ := by
8484
convert Inducing.continuousAdd h (inducing_induced h)
8585

86-
theorem induced_sInf {α β : Type*} {g : β → α}
87-
{s : Set (TopologicalSpace α)} :
88-
TopologicalSpace.induced g (sInf s) =
89-
sInf ((TopologicalSpace.induced g) '' s) := by
90-
rw [sInf_eq_iInf' s, sInf_image']
91-
exact induced_iInf
92-
9386
end induced
9487

9588
-- elsewhere

0 commit comments

Comments
 (0)