Added Urysohn Metrisation theorem and compactness theorems.
All checks were successful
Compile Project / Compile (push) Successful in 29s

This commit is contained in:
Bokuan Li
2026-05-26 19:32:02 -04:00
parent f6c5976873
commit 5923b45f9d
9 changed files with 208 additions and 57 deletions

106
.vscode/tasks.json vendored
View File

@@ -1,57 +1,57 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "npx spec compile",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Serve",
"type": "shell",
"command": "npx spec serve",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Watch",
"type": "shell",
"command": "npx spec watch",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Conservative",
"type": "shell",
"command": "npx spec watch --conservative",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "npx spec compile",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
]
}
},
{
"label": "Serve",
"type": "shell",
"command": "npx spec serve",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Watch",
"type": "shell",
"command": "npx spec watch",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Conservative",
"type": "shell",
"command": "npx spec watch --conservative",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
}
]
}