Skip to content
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
11 changes: 11 additions & 0 deletions Logbook.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Leios logbook

## 2025-10-11

### Parameter-sweep experiment for Markovian model

We completed the first set of experiments using the [Markovian model for Leios efficiency](analysis/markov/).

| | |
|---|---|
| ![Committee and quorum without adversary](analysis/markov/experiments/Committee%20and%20quorum%20without%20adversary.svg) | ![Ideal conditions with adversary](analysis/markov/experiments/Ideal%20conditions%20with%20adversary.svg) |
| ![Non-ideal network without adversary](analysis/markov/experiments/Non-ideal%20network%20without%20adversary.svg) | ![Protocol parameters without adversary](analysis/markov/experiments/Protocol%20parameters%20without%20adversary.svg) |

## 2025-10-10

### Extended analysis of ledger operations
Expand Down
3 changes: 3 additions & 0 deletions analysis/markov/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/.lake
.ipynb_checkpoints/
experiments/*.csv.gz
experiments/*.png
6 changes: 4 additions & 2 deletions analysis/markov/Linleios/Evolve.lean
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,7 @@ def ebEfficiency (states : Probabilities) : Float :=
def efficiency (states : Probabilities) : Float :=
let rb := rbEfficiency states
let eb := ebEfficiency states
let ρ := 12.5 / 0.9
(rb + ρ * eb) / (1 + ρ)
let rbSize := 0.9
let ebSize := 12.0
let ρ := ebSize / rbSize
(rb * (1 - eb) + ρ * eb) / (1 + ρ)
555 changes: 555 additions & 0 deletions analysis/markov/experiments.ipynb

Large diffs are not rendered by default.

131 changes: 131 additions & 0 deletions analysis/markov/experiments/Committee and quorum without adversary.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
115 changes: 115 additions & 0 deletions analysis/markov/experiments/Ideal conditions with adversary.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading