Add files for Paxos decision system.

This commit is contained in:
DSTO\pivatom
2019-01-10 14:54:53 +10:30
parent c12c57bfcf
commit 2abdf7bc1e
6 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
'''
@author Michael Pivato
Much thanks to Tom Cocagne by providing basic paxos code
which was the basis of this module and algorithm.
Check out the original at: https://github.com/cocagne/paxos/blob/master/paxos/essential.py
'''
from learner import Learner
from acceptor import Acceptor
from proposer import Proposer
class PaxosInstance():
pass