waynebhayes / SANA

Simulating Annealing Network Aligner
25 stars 40 forks source link

Change ushort to uint. Change back matrix interface. #40

Closed Jiayoushi closed 6 years ago

Jiayoushi commented 6 years ago

Most ushort is changed to uint. Since the number of nodes of a graph may now be larger than what ushort can represent. Most matrix.get(node1, node2) is changed back to matrix[node1][node2]. But use matrix.get(node1, node2) when the matrix is specified as const.