mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
12 lines
234 B
Plaintext
12 lines
234 B
Plaintext
# (C) 2018 University of Bristol. See License.txt
|
|
|
|
import dijkstra
|
|
from path_oram import OptimalORAM
|
|
|
|
n = 1000
|
|
|
|
dist = dijkstra.test_dijkstra_on_cycle(n, OptimalORAM)
|
|
|
|
for i in range(n):
|
|
print_ln('%s: %s', i, dist[i][0].reveal())
|