Updated config file

This commit is contained in:
Sudipta Basak 2024-03-22 18:39:56 +00:00
parent 71948db5ad
commit e98de5bf9f
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ def study():
# Configuration
runs = 10
degs = range(6, 9, 2)
degs = range(6, 13, 2)
mals = range(5, 100, 5)
numberOfColumns = 128
custody = 4

View File

@ -113,7 +113,7 @@ deg = 8
mals = range(5, 100, 5)
numberOfColumns = 128
custody = 4
numberOfNodes = [int(_) for _ in (np.logspace(2, 3, 3, endpoint=True, base=10) * 5)]
numberOfNodes = [int(_) for _ in (np.logspace(2, 4, 5, endpoint=True, base=10) * 5)]
numberOfValidators = [int(nn * 2.4) for nn in numberOfNodes] # (0.8 * 1 + 0.2 * 8 = 2.4)
if __name__ == "__main__":