-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
119 lines (80 loc) · 2.81 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Feb 18 11:51:31 2018
@author: aviasayag
"""
import numpy as np
def print1(isPrint ,strToPrint):
if(isPrint):
print(strToPrint)
"""
Returns a matrix of size n*n where in the (i,j) place is the number of the
different txs in the block i built vs the block j built.
"""
def compareBlocks(blocksList, isPrint=1):
numOfBlocks = len(blocksList)
missingMat = range(numOfBlocks**2)
missingMat = np.reshape(missingMat, (numOfBlocks, numOfBlocks))
for i in range(numOfBlocks):
block1 = blocksList[i]
size1 = len(block1)
for j in range(i, numOfBlocks):
block2 = blocksList[j]
size2 = len(block2)
togetherSize = len(set(block1+block2))
missingNum1 = togetherSize - size1
missingNum2 = togetherSize - size2
missingMat[i][j] = missingNum1
missingMat[j][i] = missingNum2
print1(isPrint, missingMat)
return missingMat
"""
Returns a list of size n where in the (i) place is the number of the
different txs between the byzantine node to node i's block.
"""
def compareBlocksWithByzantine(blocksList, isPrint=1):
numOfBlocks = len(blocksList)
missingList = [0]
byzantineBlock = blocksList[0]
size1 = len(byzantineBlock)
for i in range(1, numOfBlocks):
block2 = blocksList[i]
togetherSize = len(set(byzantineBlock+block2))
missingNum = togetherSize - size1
missingList.append(missingNum)
print1(isPrint, missingList)
return missingList
"""
Returns a matrix of size n*n where in the (i,j) place is the number of the
different txs in the i's epool vs j's epool.
"""
def compareEpools(nodesList, isPrint=1):
numOfNodes = len(nodesList)
missingMat = range(numOfNodes**2)
missingMat = np.reshape(missingMat, (numOfNodes, numOfNodes))
for i in range(numOfNodes):
epool1 = nodesList[i].epool
size1 = len(epool1)
for j in range(i, numOfNodes):
epool2 = nodesList[j].epool
size2 = len(epool2)
togetherSize = len(set(epool1+epool2))
missingNum1 = togetherSize - size1
missingNum2 = togetherSize - size2
missingMat[i][j] = missingNum1
missingMat[j][i] = missingNum2
print1(isPrint, missingMat)
return missingMat
"""
"""
def meanMatrixWithoutDiagonal(mat):
length, width = mat.shape
count = 0
summ = 0
for i in range(length):
for j in range(width):
if i != j:
count += 1
summ += mat[i][j]
return summ/count