das-research/DAS/shape.py
Leonardo Bautista-Gomez 6334d1c779 Removing static variables
2023-02-08 20:10:26 +01:00

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