https://github.com/jamesvorder/distributed_algos_labs
"Labs" from my distributed algos course. (These are just distributed algorithms implemented in solidity.)
https://github.com/jamesvorder/distributed_algos_labs
distributed-systems leader-election solidity
Last synced: 6 months ago
JSON representation
"Labs" from my distributed algos course. (These are just distributed algorithms implemented in solidity.)
- Host: GitHub
- URL: https://github.com/jamesvorder/distributed_algos_labs
- Owner: JamesVorder
- Created: 2018-05-12T19:53:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-18T20:43:16.000Z (over 7 years ago)
- Last Synced: 2025-02-14T11:41:28.065Z (8 months ago)
- Topics: distributed-systems, leader-election, solidity
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Distributed Algorithms "Labs"
"Labs" from my distributed algos course. (These are just distributed algorithms implemented in solidity.) I'm reading Nancy A. Lynch's _Distributed Algorithms._ These algorithms all come from there.Each folder contains a [Truffle project.](http://truffleframework.com/) You can run the tests with `truffle test`
## LCR
An algorithm for leader election in a synchronous ring network.
## HS
An algorithm for leader election in a synchronous ring network.