mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 14:08:09 -05:00
11 lines
190 B
Python
11 lines
190 B
Python
program.options_from_args()
|
|
sfix.set_precision_from_args(program)
|
|
|
|
n = int(program.args[1])
|
|
m = int(program.args[2])
|
|
a = sfix(0, size=n)
|
|
|
|
@for_range(m)
|
|
def _(i):
|
|
(a / a).store_in_mem(0)
|