Merge branch 'maliciousNode' of https://github.com/status-im/das-research into maliciousNode

This commit is contained in:
Arunima Chaudhuri 2024-02-18 22:16:24 +05:30
commit 7e388ba8ca
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ class Simulator:
rows = list(range(self.shape.blockSizeC)) * (int(totalRows/self.shape.blockSizeC)+1)
columns = list(range(self.shape.blockSizeR)) * (int(totalColumns/self.shape.blockSizeR)+1)
rows = rows[0:totalRows]
columns = columns[0:totalRows]
columns = columns[0:totalColumns]
random.shuffle(rows)
random.shuffle(columns)
offsetR = lightVal*self.shape.chiR

View File

@ -22,5 +22,5 @@ $ pip3 install -r DAS/requirements.txt
## Run the simulator
```
$ python3 study.py config.das
$ python3 study.py smallConf.py
```