vault backup: 2025-03-10 17:40:21

This commit is contained in:
Marco Realacci 2025-03-10 17:40:21 +01:00
parent f6767fc58b
commit 12ee83182c
2 changed files with 6 additions and 6 deletions

View file

@ -34,9 +34,9 @@
"type": "pdf", "type": "pdf",
"state": { "state": {
"file": "Concurrent Systems/slides/class 3.pdf", "file": "Concurrent Systems/slides/class 3.pdf",
"page": 13, "page": 16,
"left": -26, "left": -26,
"top": 31, "top": 472,
"zoom": 0.57541567695962 "zoom": 0.57541567695962
}, },
"icon": "lucide-file-text", "icon": "lucide-file-text",
@ -216,11 +216,11 @@
"companion:Toggle completion": false "companion:Toggle completion": false
} }
}, },
"active": "6edd4157a160e462", "active": "02dff467d5bcbba5",
"lastOpenFiles": [ "lastOpenFiles": [
"Concurrent Systems/notes/3.md",
"Pasted image 20250310172134.png", "Pasted image 20250310172134.png",
"Concurrent Systems/slides/class 3.pdf", "Concurrent Systems/slides/class 3.pdf",
"Concurrent Systems/notes/3.md",
"Pasted image 20250310103703.png", "Pasted image 20250310103703.png",
"Concurrent Systems/notes/1 - CS Basics.md", "Concurrent Systems/notes/1 - CS Basics.md",
"Concurrent Systems/notes/1 - CS Basics2.md", "Concurrent Systems/notes/1 - CS Basics2.md",
@ -248,7 +248,6 @@
"Concurrent Systems/notes/images/Pasted image 20250304084537.png", "Concurrent Systems/notes/images/Pasted image 20250304084537.png",
"Concurrent Systems/slides/class 1.pdf", "Concurrent Systems/slides/class 1.pdf",
"Concurrent Systems/notes/images/Pasted image 20250303093116.png", "Concurrent Systems/notes/images/Pasted image 20250303093116.png",
"Concurrent Systems/notes/images/Pasted image 20250303100953.png",
"Foundation of data science/notes/1 CV Basics.md", "Foundation of data science/notes/1 CV Basics.md",
"Foundation of data science/notes/7 Autoencoders.md", "Foundation of data science/notes/7 Autoencoders.md",
"Foundation of data science/notes/6 PCA.md", "Foundation of data science/notes/6 PCA.md",

View file

@ -260,7 +260,8 @@ Let's consider the execution of $p_i$ leading to its CS:
so by this, the very worst possible case is that my lock experiences that. so by this, the very worst possible case is that my lock experiences that.
It looks like I can experience at most $2n-1$ other critical sections, but it is even better, let's see: It looks like I can experience at most $2n-1$ other critical sections, but it is even better, let's see:
... - $p_n$ invokes lock alone, completes its CS (the first after the reset) and its new DATE is n+1
- all processes invoke lock simultaneously
#### Improvement of Aravinds algorithm #### Improvement of Aravinds algorithm