1
0
Fork 0
mirror of https://github.com/samsapti/bachelor-project.git synced 2024-11-22 12:57:56 +00:00

Change print statement

This commit is contained in:
Sam A. 2023-05-14 22:31:51 +02:00
parent d212d668b8
commit 27eaec8dd1
Signed by: samsapti
GPG key ID: CBBBE7371E81C4EA

View file

@ -144,9 +144,9 @@ t_exps = OMatrix(N=MATCHING_SIZE, M=1, oram_type=OptimalORAM, int_type=types.sin
@for_range(MATCHING_SIZE) @for_range(MATCHING_SIZE)
def _(i): def _(i):
p_cases[i][0] = sum(p_shares.get_column(i)) p_cases[i][0] = sum(p_shares.get_column(i))
print_ln('p_case %s: %s', i, p_cases[i][0].reveal()) print_ln('patient %s suffers from case %s', i, p_cases[i][0].reveal())
t_exps[i][0] = sum(t_shares.get_column(i)) t_exps[i][0] = sum(t_shares.get_column(i))
print_ln('t_exp %s: %s', i, t_exps[i][0].reveal()) print_ln('therapist %s is experienced with case %s', i, t_exps[i][0].reveal())
# Run algorithm # Run algorithm
mm = Matchmaker(p_cases, t_exps, N=MATCHING_SIZE, M=1) mm = Matchmaker(p_cases, t_exps, N=MATCHING_SIZE, M=1)