mirror of
https://github.com/logos-storage/das-research.git
synced 2026-01-02 21:23:09 +00:00
16 lines
325 B
Python
16 lines
325 B
Python
#!/bin/python3
|
|
|
|
class Shape:
|
|
|
|
def __init__(self, blockSize, numberValidators, failureRate, chi, netDegree, run):
|
|
self.run = run
|
|
self.numberValidators = numberValidators
|
|
self.blockSize = blockSize
|
|
self.failureRate = failureRate
|
|
self.netDegree = netDegree
|
|
self.chi = chi
|
|
|
|
|
|
|
|
|